當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Password::encrypt方法代碼示例

本文整理匯總了PHP中Password::encrypt方法的典型用法代碼示例。如果您正苦於以下問題:PHP Password::encrypt方法的具體用法?PHP Password::encrypt怎麽用?PHP Password::encrypt使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Password的用法示例。


在下文中一共展示了Password::encrypt方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: test1

 public function test1()
 {
     $this->assertEquals(Password::encrypt('salt1', 'salt2', 'test', 'sha512'), 'sha512:84955637ddfc24c7f70b390c52a2a5fec0a02c9e3f34811772563547db18fbaf529f977af3fa59d4a818bfade14a9c04cadda1b3d53a3a0d9790794ef18f1e4d');
 }
開發者ID:martinlindhe,項目名稱:core_dev,代碼行數:4,代碼來源:PasswordTest.php

示例2: setPassword

 /**
  * Sets a new password for the user
  *
  * @param $id user id
  * @param $pwd password to set
  * @param $algo hash algorithm to use
  */
 public static function setPassword($id, $pwd, $algo = 'sha512')
 {
     $u = User::get($id);
     if (!$u) {
         throw new \Exception('wat');
     }
     $session = SessionHandler::getInstance();
     $u->password = Password::encrypt($id, $session->getEncryptKey(), $pwd, $algo);
     $u->store();
 }
開發者ID:martinlindhe,項目名稱:core_dev,代碼行數:17,代碼來源:UserHandler.php

示例3: getExact

 /**
  * Used by SessionHandler::login() and others
  */
 public static function getExact($type, $id, $name, $pwd)
 {
     $q = 'SELECT * FROM tblUsers' . ' WHERE id = ? AND name = ? AND type = ? AND time_deleted IS NULL';
     $obj = Sql::pSelectRowToObject(__CLASS__, array($q, 'isi', $id, $name, $type));
     if (!$obj) {
         return false;
     }
     $x = explode(':', $obj->password);
     if (count($x) == 2) {
         $algo = $x[0];
         $pwd2 = $x[1];
     } else {
         // auto fallback to old default (sha1)
         $algo = 'sha1';
         $pwd2 = $obj->password;
     }
     $session = SessionHandler::getInstance();
     $expected = $algo . ":" . $pwd2;
     if (Password::encrypt($id, $session->getEncryptKey(), $pwd, $algo) != $expected) {
         return false;
     }
     return $obj;
 }
開發者ID:martinlindhe,項目名稱:core_dev,代碼行數:26,代碼來源:User.php


注:本文中的Password::encrypt方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。