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


PHP BcryptHasher::make方法代碼示例

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


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

示例1: generate

 /**
  * Generate captcha text
  *
  * @return string
  */
 protected function generate()
 {
     $characters = str_split($this->characters);
     $bag = '';
     for ($i = 0; $i < $this->length; $i++) {
         $bag .= $characters[rand(0, count($characters) - 1)];
     }
     $this->session->put('captcha', ['sensitive' => $this->sensitive, 'key' => $this->hasher->make($this->sensitive ? $bag : $this->str->lower($bag))]);
     return $bag;
 }
開發者ID:mgh145,項目名稱:captcha,代碼行數:15,代碼來源:Captcha.php

示例2: 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

示例3: generate

 /**
  *
  * @return string
  */
 protected function generate()
 {
     $characters = str_split($this->characters);
     $bag = '';
     for ($i = 0; $i < $this->length; $i++) {
         $bag .= $characters[rand(0, count($characters) - 1)];
     }
     if (!$this->sensitive) {
         $bag = $this->str->lower($bag);
     }
     if ($this->formId) {
         //Log::info('$this->formId: ' . $this->formId . ' = ' . $bag);
         $this->session->put('captcha_' . $this->formId, $this->hasher->make($bag));
         //Log::info('$this->formId: ' . $this->formId . ' = ' . $this->session->get('captcha_' . $this->formId));
     } else {
         $this->session->put('captcha', $this->hasher->make($bag));
     }
     return $bag;
 }
開發者ID:votong,項目名稱:captcha,代碼行數:23,代碼來源:Captcha.php

示例4: make

 /**
  * Hash the given value.
  *
  * @param string $value
  * @param array $options
  * @return string 
  * @throws \RuntimeException
  * @static 
  */
 public static function make($value, $options = array())
 {
     return \Illuminate\Hashing\BcryptHasher::make($value, $options);
 }
開發者ID:satriashp,項目名稱:tour,代碼行數:13,代碼來源:_ide_helper.php

示例5: hashHashable

 /**
  * Hash any hashable attributes
  *
  * @return null
  */
 private function hashHashable()
 {
     $hasher = new BcryptHasher();
     $filtered = array_filter($this->attributes);
     foreach ($filtered as $key => $value) {
         if (in_array($key, $this->hashable) && $value != $this->getOriginal($key)) {
             $this->attributes[$key] = $hasher->make($value);
         }
     }
 }
開發者ID:lakedawson,項目名稱:vocal,代碼行數:15,代碼來源:Vocal.php

示例6: hash

 /**
  * Create a new HashedPassword
  *
  * @param Password $password
  * @return HashedPassword
  */
 public function hash(Password $password)
 {
     return new HashedPassword($this->hasher->make($password->toString()));
 }
開發者ID:kfuchs,項目名稱:cribbb,代碼行數:10,代碼來源:BcryptHashingService.php

示例7: hash

 /**
  * Create a new HashedPassword
  *
  * @param Password $password
  * @return HashedPassword
  */
 public function hash(Password $password)
 {
     return new HashedPassword($this->hasher->make((string) $password));
 }
開發者ID:snb4crazy,項目名稱:cribbb,代碼行數:10,代碼來源:BcryptHashingService.php

示例8: getAuthPassword

 public function getAuthPassword()
 {
     $hasher = new BcryptHasher();
     return $hasher->make($this->password);
 }
開發者ID:brunomartins-com,項目名稱:espacofarmaceutico,代碼行數:5,代碼來源:User.php

示例9: changePassword

 public function changePassword()
 {
     $adminId = Input::get("adminId");
     $username = Input::get("username");
     $oldPassword = Input::get("oldPassword");
     $newPassword = Input::get("newPassword");
     $newPasswordConfirm = Input::get("newPasswordConfirm");
     $hasher = new BcryptHasher();
     if (Auth::attempt(array('username' => $username, 'password' => $oldPassword))) {
         $result = Admin::where("admin_id", "=", $adminId)->update(["password" => $hasher->make($newPassword)]);
         if ($result == 0) {
             return Response::json(array('errCode' => 1, 'errMsg' => "[修改失敗]數據庫錯誤"));
         }
     } else {
         return Response::json(array('errCode' => 1, 'errMsg' => "[修改失敗]原密碼錯誤"));
     }
     return Response::json(array('errCode' => 0));
 }
開發者ID:Jv-Juven,項目名稱:carService,代碼行數:18,代碼來源:AdminController.php

示例10: postPassword

 /**
  * @param Request      $request
  * @param BcryptHasher $hasher
  *
  * @return \Illuminate\Http\RedirectResponse
  */
 public function postPassword(Request $request, BcryptHasher $hasher)
 {
     $this->failedValidationRedirect = route('account.password');
     $this->validate($request, ['password1' => 'required|min:6', 'password' => 'required']);
     if ($this->guard->getProvider()->validateCredentials($this->guard->user(), $request->only('password'))) {
         // Don't save the password in plaintext!
         ConfirmationManager::send('password', $this->guard->user(), 'account.password.confirm', $hasher->make($request->get('password1')));
         return redirect()->route('account.profile')->withSuccess(trans('account.confirm'));
     }
     return redirect()->route('account.password')->withInput($request->only('password1'))->withErrors(['password1' => trans('member.invalidCredentials')]);
 }
開發者ID:Adamzynoni,項目名稱:mybb2,代碼行數:17,代碼來源:AccountController.php


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