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


PHP BcryptHasher::check方法代碼示例

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


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

示例1: check

 /**
  * @param $value
  * @return bool
  */
 public function check($value)
 {
     $store = $this->session->get('captcha');
     if ($this->sensitive) {
         $value = $this->str->lower($value);
         $store = $this->str->lower($store);
     }
     return $this->hasher->check($value, $store);
 }
開發者ID:iwillhappy1314,項目名稱:laravel-admin,代碼行數:13,代碼來源:Captcha.php

示例2: check

 /**
  *
  * @param $value
  * @return bool
  */
 public function check($value)
 {
     $store = $this->session->get('captcha' . (Input::has('captcha_id') ? '_' . Input::get('captcha_id') : ''));
     if ($this->sensitive) {
         $value = $this->str->lower($value);
         $store = $this->str->lower($store);
     }
     return $this->hasher->check($value, $store);
 }
開發者ID:votong,項目名稱:captcha,代碼行數:14,代碼來源:Captcha.php

示例3: unlock

 /**
  * Unlocks a batch by checking the specified
  * password against the batch password.
  *
  * @param BatchUnlockRequest $request
  *
  * @return bool
  */
 public function unlock(BatchUnlockRequest $request)
 {
     $hasher = new BcryptHasher();
     if ($hasher->check($request->input('password'), $this->password)) {
         // Store the UUID in the users session so they can have
         // access to it for as long as the session exists
         $request->session()->put($this->uuid, $this->uuid);
         return true;
     }
     return false;
 }
開發者ID:stevebauman,項目名稱:quickly-share-it,代碼行數:19,代碼來源:Batch.php

示例4: check

 /**
  * Captcha check
  *
  * @param $value
  * @return bool
  */
 public function check($value)
 {
     if (!$this->session->has('captcha')) {
         return false;
     }
     $key = $this->session->get('captcha.key');
     if (!$this->session->get('captcha.sensitive')) {
         $value = $this->str->lower($value);
     }
     $this->session->remove('captcha');
     return $this->hasher->check($value, $key);
 }
開發者ID:diandianxiyu,項目名稱:ApiTesting,代碼行數:18,代碼來源:Captcha.php

示例5: updateSettings

 public function updateSettings(Request $request, Hash $hash)
 {
     $user = $request->user();
     $rules = ['old_password' => 'required|min:8', 'password' => 'required|confirmed|min:8'];
     $validator = app('validation')->make($request->all(), $rules);
     if ($validator->fails()) {
         $request->session->add(['errors' => $validator->errors()->all()]);
         return app('twig')->render('user/settings.htm', ['oldInputs' => $request->all()]);
     }
     if (!$hash->check($request->input('old_password'), $user->password)) {
         $request->session->add(['errors' => ['Old password incorrect.']]);
         return app('twig')->render('user/settings.htm', ['oldInputs' => $request->all()]);
     }
     $user->password = $hash->make($request->input('old_password'));
     $user->save();
     $request->session->add(['success' => 'settings updated successfuly.']);
     return app('twig')->render('user/settings.htm');
 }
開發者ID:lihuibin,項目名稱:notejam_blink,代碼行數:18,代碼來源:UserController.php

示例6: check

 /**
  * Check the given plain value against a hash.
  *
  * @param string $value
  * @param string $hashedValue
  * @param array $options
  * @return bool 
  * @static 
  */
 public static function check($value, $hashedValue, $options = array())
 {
     return \Illuminate\Hashing\BcryptHasher::check($value, $hashedValue, $options);
 }
開發者ID:satriashp,項目名稱:tour,代碼行數:13,代碼來源:_ide_helper.php

示例7: checkPin

 /**
  * Checks the specified pin against the current password folder pin.
  *
  * @param string $pin
  *
  * @return bool
  */
 public function checkPin($pin)
 {
     $hasher = new BcryptHasher();
     return $hasher->check($pin, $this->pin);
 }
開發者ID:stevebauman,項目名稱:ithub,代碼行數:12,代碼來源:PasswordFolder.php

示例8: check

 /**
  * Check if password matches
  *
  * @param Password $password
  * @param HashedPassword $hashedPassword
  * @return boolean
  */
 public function check(Password $password, HashedPassword $hashedPassword)
 {
     return $this->hasher->check($password->toString(), $hashedPassword->toString());
 }
開發者ID:Evyy,項目名稱:cffs-api,代碼行數:11,代碼來源:BcryptHashingService.php

示例9: validateCredentials

 /**
  * Validate a user against the given credentials.
  *
  * @param  \Illuminate\Auth\Authenticatable $user
  * @param  array $credentials
  * @return bool
  */
 public function validateCredentials(Authenticatable $user, array $credentials)
 {
     return $credentials['type'] === 'shibboleth' ? true : $this->hasher->check($credentials['password'], $user->getAuthPassword());
 }
開發者ID:PeterMartinez,項目名稱:Laravel-Shibboleth-Service-Provider,代碼行數:11,代碼來源:ShibbolethUserProvider.php


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