Total Complexity | 1 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
16 | abstract class AbstractKeyStretchingFunction extends HashAlgorithm |
||
17 | { |
||
18 | /** |
||
19 | * The internal name of the algorithm. |
||
20 | */ |
||
21 | const ALGORITHM_NAME = 'none'; |
||
22 | |||
23 | /** |
||
24 | * Flag to force native code polyfill realizations, if available. |
||
25 | * |
||
26 | * @var bool Flag to force native realizations. |
||
27 | */ |
||
28 | protected $useNative = false; |
||
29 | |||
30 | /** |
||
31 | * Key stretching algorithm constructor. |
||
32 | */ |
||
33 | 352 | public function __construct() |
|
37 |