Total Complexity | 3 |
Total Lines | 29 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
22 | trait DerivationSaltingTrait |
||
23 | { |
||
24 | /** |
||
25 | * Setter for the derivation salt string property. |
||
26 | * |
||
27 | * @param string $derivationSalt The derivation salt string. |
||
28 | * |
||
29 | * @return $this The hash algorithm object. |
||
30 | * @throws \Exception Validation errors. |
||
31 | */ |
||
32 | 41 | public function setDerivationSalt($derivationSalt) |
|
41 | } |
||
42 | |||
43 | /** |
||
44 | * Getter for the derivation salt string property. |
||
45 | * |
||
46 | * @return string The derivation salt string. |
||
47 | */ |
||
48 | 30 | public function getDerivationSalt() |
|
53 |