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


PHP UserModule::encryptPassword方法代碼示例

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


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

示例1: verifyPassword

 /**
  * Phương thức verifyPassword($attribute, $params) dùng để xác thực mật khẩu của user
  *
  * @param type $attribute
  * @param type $params 
  */
 public function verifyPassword($attribute, $params)
 {
     $strPassword = UserModule::encryptPassword($this->verifyPassword, $this->__user->saltkey);
     if ($strPassword != $this->__user->password) {
         $this->addError('verifyPassword', UserModule::t('The password you gave is incorrect.'));
     }
 }
開發者ID:qkongvan,項目名稱:k6-thuc-pham,代碼行數:13,代碼來源:ChangeEmailForm.php

示例2: authenticate

 /**
  * Phương thức authenticate() dùng để xác thực username và password của User có đúng không
  *  
  * @return boolean whether authentication succeeds.
  */
 public function authenticate()
 {
     //$record = User::model()->findByAttributes(array('username'=>$this->username));
     if (strpos($this->username, "@")) {
         $record = User::model()->notsafe()->findByAttributes(array('email' => $this->username));
     } else {
         $record = User::model()->notsafe()->findByAttributes(array('username' => $this->username));
     }
     if ($record === null) {
         $this->errorCode = self::ERROR_USERNAME_INVALID;
     } else {
         if ($record->password !== UserModule::encryptPassword($this->password, $record->saltkey)) {
             $this->errorCode = self::ERROR_PASSWORD_INVALID;
         } else {
             $this->_id = $record->id;
             $this->setState('superuser', $record->superuser);
             $this->errorCode = self::ERROR_NONE;
         }
     }
     return !$this->errorCode;
 }
開發者ID:qkongvan,項目名稱:k6-thuc-pham,代碼行數:26,代碼來源:HUserIdentity.php

示例3: createCodeActivation

 /**
  * Phương thức dùng để tạo ra mã activate code
  */
 public function createCodeActivation()
 {
     $codeActivation = UserModule::encryptPassword(microtime(), UserModule::createSalt());
     $this->activkey = $codeActivation;
     return $codeActivation;
 }
開發者ID:qkongvan,項目名稱:k6-thuc-pham,代碼行數:9,代碼來源:User.php


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