How to implement cryptographically-protected passwords with PHP?
What the video will cover:
- What’s a cryptographically secure password and how to use a Cryptographic Random Number generator (CRNG)?
-
int_random
is available since PHP 7. Benefits of using a cryptographically secure function in comparison withmt_random()
- When dealing with password, it’s very important to use a “cryptographically secure” like
random_int()
with PHP >=7.0 or random_compat for PHP 5.6 and older versions.
Top comments (1)
Hope this one helps! Any feedback or questions, feel free to post them here!