当前位置: 首页>>代码示例>>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;未经允许,请勿转载。