Updates the recovery key records.
Parameters
$keys
arrayrequired- Associative array of token => data pairs, where the data is an associative array of information about the key.
...$0
arrayInformation about the key.hashed_key
stringThe hashed value of the key.created_at
intThe timestamp when the key was created.
Source
private function update_keys( array $keys ) { return update_option( $this->option_name, $keys, false ); }
Changelog
Version Description 6.8.0 Each key should now be hashed using wp_fast_hash() instead of phpass. 5.2.0 Introduced.
User Contributed Notes
You must log in before being able to contribute a note or feedback.