| Total Complexity | 3 |
| Total Lines | 42 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 22 | trait DerivationIterationControlTrait |
||
| 23 | { |
||
| 24 | /** |
||
| 25 | * Setter for the derivation internal iteration count property. |
||
| 26 | * |
||
| 27 | * @param int $numberOfIterations The number of internal iterations to perform. |
||
| 28 | * |
||
| 29 | * @return $this The hash algorithm object. |
||
| 30 | * @throws \Exception Validation errors. |
||
| 31 | */ |
||
| 32 | public function setDerivationIterations($numberOfIterations) |
||
| 54 | } |
||
| 55 | |||
| 56 | /** |
||
| 57 | * Getter for the derivation internal iteration count property. |
||
| 58 | * |
||
| 59 | * @return int The number of internal iterations to perform. |
||
| 60 | */ |
||
| 61 | public function getDerivationIterations() |
||
| 66 |