wpseek.com
A WordPress-centric search engine for devs and theme authors



wp_hash_password_options › WordPress Filter Hooks

Since6.8.0
Deprecatedn/a
apply_filters( 'wp_hash_password_options', array()
Parameters: (2)
  • (array) $options Array of options to pass to the password hashing functions. By default this is an empty array which means the default options will be used.
    Required: Yes
  • (string) $algorithm The hashing algorithm in use.
    Required: Yes
Defined at:
Codex:

Filters the options passed to the password_hash() and password_needs_rehash() functions.

The default hashing algorithm is bcrypt, but this can be changed via the {@see 'wp_hash_password_algorithm'} filter. You must ensure that the options are appropriate for the algorithm in use.





Source

$options = apply_filters( 'wp_hash_password_options', array(), $algorithm );