Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
| Total | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
2 / 2 |
| HashDb | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
2 | |
100.00% |
2 / 2 |
| make | |
100.00% |
1 / 1 |
2 | |
100.00% |
2 / 2 |
|||
| 1 | <?php |
| 2 | |
| 3 | namespace Qmp\Laravel\GdprCryptData\Hash; |
| 4 | |
| 5 | class HashDb |
| 6 | { |
| 7 | private static $hashMode = 'sha3-512'; |
| 8 | |
| 9 | public static function make($plainText, $hashMode = null) |
| 10 | { |
| 11 | $hashMode = $hashMode ? $hashMode : self::$hashMode; |
| 12 | |
| 13 | return hash($hashMode, $plainText); |
| 14 | } |
| 15 | } |