Jose\EncrypterInterface::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->isEncryptionSupportEnabled() ? [] : $this->encrypter->getSupportedKeyEncryptionAlgorithms();
 }