Changeset 59904 for trunk/src/wp-includes/functions.php
- Timestamp:
- 03/03/2025 09:49:36 AM (5 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/functions.php
r59830 r59904 9143 9143 string $message 9144 9144 ): string { 9145 return '$generic$' . sodium_bin2hex( sodium_crypto_generichash( $message ) ); 9145 $hashed = sodium_crypto_generichash( $message, 'wp_fast_hash_6.8+', 30 ); 9146 return '$generic$' . sodium_bin2base64( $hashed, SODIUM_BASE64_VARIANT_URLSAFE_NO_PADDING ); 9146 9147 } 9147 9148
Note: See TracChangeset
for help on using the changeset viewer.