コード例 #1
0
ファイル: Security.php プロジェクト: alevikzs/phrest
 /**
  * @return string
  */
 private function createSalt()
 {
     $security = new PhalconSecurity();
     $security->setRandomBytes(64);
     return $security->getSaltBytes();
 }
コード例 #2
0
ファイル: Security.php プロジェクト: starsw001/cphalcon
 public function getSaltBytes()
 {
     return parent::getSaltBytes();
 }
コード例 #3
0
ファイル: Security.php プロジェクト: phalcon/cphalcon
 public function getSaltBytes($numberBytes = 0)
 {
     return parent::getSaltBytes($numberBytes);
 }