Changeset 59009 for trunk/src/wp-includes/pluggable.php
- Timestamp:
- 09/11/2024 12:06:15 PM (19 months ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/pluggable.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/pluggable.php
r58838 r59009 2565 2565 if ( ! function_exists( 'wp_hash_password' ) ) : 2566 2566 /** 2567 * Creates a hash (encrypt)of a plain text password.2567 * Creates a hash of a plain text password. 2568 2568 * 2569 2569 * For integration with other applications, this function can be overwritten to 2570 * instead use the other package password checking algorithm.2570 * instead use the other package password hashing algorithm. 2571 2571 * 2572 2572 * @since 2.5.0 … … 2592 2592 if ( ! function_exists( 'wp_check_password' ) ) : 2593 2593 /** 2594 * Checks the plaintext password against the encrypted Password.2594 * Checks a plaintext password against a hashed password. 2595 2595 * 2596 2596 * Maintains compatibility between old version and the new cookie authentication … … 2600 2600 * 2601 2601 * For integration with other applications, this function can be overwritten to 2602 * instead use the other package password checking algorithm.2602 * instead use the other package password hashing algorithm. 2603 2603 * 2604 2604 * @since 2.5.0 … … 2793 2793 if ( ! function_exists( 'wp_set_password' ) ) : 2794 2794 /** 2795 * Updates the user's password with a new encrypted one.2795 * Updates the user's password with a new hashed one. 2796 2796 * 2797 2797 * For integration with other applications, this function can be overwritten to
Note: See TracChangeset
for help on using the changeset viewer.