Changes between Initial Version and Version 1 of Ticket #21022, comment 184
- Timestamp:
- 12/03/2024 10:51:20 AM (14 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #21022, comment 184
initial v1 22 22 wp_hash_password($p); 23 23 //vs 24 password_hash($p, PASSWORD_BCRYPT, 10);24 password_hash($p, PASSWORD_BCRYPT, ['cost'=>10]); 25 25 //vs 26 password_hash($p, PASSWORD_BCRYPT, 12);26 password_hash($p, PASSWORD_BCRYPT, ['cost'=>12]); 27 27 }}} 28 28