Total Complexity | 4 |
Total Lines | 28 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
10 | class SHAHasher extends HashManager implements HasherContract |
||
11 | { |
||
12 | |||
13 | |||
14 | public function check($value, $hashedValue, array $options = []) |
||
15 | { |
||
16 | return password_verify ($value , $hashedValue); |
||
17 | } |
||
18 | |||
19 | |||
20 | public function make($value, array $options = []) |
||
23 | } |
||
24 | |||
25 | |||
26 | |||
27 | |||
28 | public function needsRehash($hashedValue, array $options = []) |
||
31 | } |
||
32 | |||
33 | |||
34 | public function info($hashedValue) |
||
41 |