コード例 #1
0
ファイル: BlockCipher.php プロジェクト: haoyanfei/zf2
 /**
  * Get the supported algorithms of the symmetric cipher
  *
  * @return array
  */
 public function getCipherSupportedAlgorithms()
 {
     if (!empty($this->cipher)) {
         return $this->cipher->getSupportedAlgorithms();
     }
     return array();
 }
コード例 #2
0
ファイル: FileCipher.php プロジェクト: Flesh192/magento
 /**
  * Get the supported algorithms of the symmetric cipher
  *
  * @return array
  */
 public function getCipherSupportedAlgorithms()
 {
     return $this->cipher->getSupportedAlgorithms();
 }