Jose\EncrypterInterface::getSupportedKeyEncryptionAlgorithms PHP 메소드

getSupportedKeyEncryptionAlgorithms() 공개 메소드

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

Usage Example

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