Jose\EncrypterInterface::getSupportedKeyEncryptionAlgorithms PHP Method

getSupportedKeyEncryptionAlgorithms() public method

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

Usage Example

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