라라벨 Hasher

1 개요[ | ]

라라벨 Hasher
  • 라라벨의 Hasher 인터페이스
  • 기본 해셔인 라라벨 BcryptHasher가 이것을 확장(상속)하여 구현됨
<?php

namespace Illuminate\Contracts\Hashing;

interface Hasher
{
    public function make($value, array $options = []);
    public function check($value, $hashedValue, array $options = []);
    public function needsRehash($hashedValue, array $options = []);
}

2 같이 보기[ | ]

3 참고[ | ]

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