"라라벨 BcryptHasher"의 두 판 사이의 차이

 
(사용자 2명의 중간 판 4개는 보이지 않습니다)
4번째 줄: 4번째 줄:
* [[Bcrypt]] 방식으로 10회 꼬아서 해시를 생성함
* [[Bcrypt]] 방식으로 10회 꼬아서 해시를 생성함


<source lang='php'>
<syntaxhighlight lang='php'>
<?php
<?php


52번째 줄: 52번째 줄:
     }
     }
}
}
</source>
</syntaxhighlight>


==같이 보기==
==같이 보기==
* [[라라벨 bcrypt()]]
* [[라라벨 RuntimeException]]
* [[라라벨 RuntimeException]]
* [[라라벨 HashServiceProvider]]
* [[라라벨 HashServiceProvider]]
* [[라라벨 Hasher]]
* [[라라벨 Hasher]]
* [[라라벨 로그인 과정]]
* [[PHP password_hash()]]
* [[PHP password_hash()]]
* [[PHP password_verify()]]
* [[Bcrypt]]
* [[Bcrypt]]


[[분류: Illuminate\Hashing]]
[[분류: Illuminate\Hashing]]
[[분류: bcrypt]]

2021년 8월 21일 (토) 22:27 기준 최신판

1 개요[ | ]

라라벨 BcryptHasher
  • 라라벨의 기본 패스워드 해셔
  • Bcrypt 방식으로 10회 꼬아서 해시를 생성함
<?php

namespace Illuminate\Hashing;

use RuntimeException;
use Illuminate\Contracts\Hashing\Hasher as HasherContract;

class BcryptHasher implements HasherContract
{
    protected $rounds = 10;

    public function make($value, array $options = [])
    {
        $cost = isset($options['rounds']) ? $options['rounds'] : $this->rounds;

        $hash = password_hash($value, PASSWORD_BCRYPT, ['cost' => $cost]);

        if ($hash === false) {
            throw new RuntimeException('Bcrypt hashing not supported.');
        }

        return $hash;
    }

    public function check($value, $hashedValue, array $options = [])
    {
        if (strlen($hashedValue) === 0) {
            return false;
        }

        return password_verify($value, $hashedValue);
    }

    public function needsRehash($hashedValue, array $options = [])
    {
        $cost = isset($options['rounds']) ? $options['rounds'] : $this->rounds;

        return password_needs_rehash($hashedValue, PASSWORD_BCRYPT, ['cost' => $cost]);
    }

    public function setRounds($rounds)
    {
        $this->rounds = (int) $rounds;

        return $this;
    }
}

2 같이 보기[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}