Exemplo n.º 1
0
 /**
  * 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);
 }