Jose\DecrypterInterface::getSupportedKeyEncryptionAlgorithms PHP Method

getSupportedKeyEncryptionAlgorithms() public method

public getSupportedKeyEncryptionAlgorithms ( ) : string[]
return string[]
    public function getSupportedKeyEncryptionAlgorithms();

Usage Example

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