PasswordHash::gensalt_private() private WP 1.0
{} It's a method of the class: PasswordHash{}
No Hooks.
Return
````. Null. Nothing.
Usage
// private - for code of main (parent) class only $result = $this->gensalt_private( $input );
- $input (required)
- -
Code of PasswordHash::gensalt_private() PasswordHash::gensalt private WP 5.7
function gensalt_private($input)
{
$output = '$P$';
$output .= $this->itoa64[min($this->iteration_count_log2 +
((PHP_VERSION >= '5') ? 5 : 3), 30)];
$output .= $this->encode64($input, 6);
return $output;
}