Jose\DecrypterInterface::getSupportedKeyEncryptionAlgorithms PHP Method

getSupportedKeyEncryptionAlgorithms() public method

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

Usage Example

コード例 #1
0
ファイル: JWTLoader.php プロジェクト: spomky-labs/jose
 /**
  * {@inheritdoc}
  */
 public function getSupportedKeyEncryptionAlgorithms()
 {
     return false === $this->isDecryptionSupportEnabled() ? [] : $this->decrypter->getSupportedKeyEncryptionAlgorithms();
 }