Jose\DecrypterInterface::getSupportedContentEncryptionAlgorithms PHP 메소드

getSupportedContentEncryptionAlgorithms() 공개 메소드

public getSupportedContentEncryptionAlgorithms ( ) : string[]
리턴 string[]
    public function getSupportedContentEncryptionAlgorithms();

Usage Example

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