Jose\DecrypterInterface::getSupportedKeyEncryptionAlgorithms PHP Метод

getSupportedKeyEncryptionAlgorithms() публичный Метод

public getSupportedKeyEncryptionAlgorithms ( ) : string[]
Результат string[]
    public function getSupportedKeyEncryptionAlgorithms();

Usage Example

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