Jose\DecrypterInterface::getSupportedKeyEncryptionAlgorithms PHP Méthode

getSupportedKeyEncryptionAlgorithms() public méthode

public getSupportedKeyEncryptionAlgorithms ( ) : string[]
Résultat string[]
    public function getSupportedKeyEncryptionAlgorithms();

Usage Example

Exemple #1
0
 /**
  * {@inheritdoc}
  */
 public function getSupportedKeyEncryptionAlgorithms()
 {
     return false === $this->isDecryptionSupportEnabled() ? [] : $this->decrypter->getSupportedKeyEncryptionAlgorithms();
 }