Exemple #1
0
 /**
  * Get the supported algorithms of the symmetric cipher
  *
  * @return array
  */
 public function getCipherSupportedAlgorithms()
 {
     if (!empty($this->cipher)) {
         return $this->cipher->getSupportedAlgorithms();
     }
     return array();
 }
Exemple #2
0
 /**
  * Get the supported algorithms of the symmetric cipher
  *
  * @return array
  */
 public function getCipherSupportedAlgorithms()
 {
     return $this->cipher->getSupportedAlgorithms();
 }