예제 #1
0
파일: Auth.php 프로젝트: penSecIT/PHProjekt
 /**
  * String to be crytped.
  *
  * @param string $string String to be cripted.
  *
  * @return scring Crypted password.
  */
 public static function cryptString($string)
 {
     $cryptedString = 'phprojektmd5' . $string;
     return Phprojekt_Auth::_cryptPassword($cryptedString);
 }