password hash (PASSWORD_BCRYPT)
2021. 9. 25. 15:22ㆍ웹 서버 구축
https://stanislas.blog/2019/04/comparing-bcrypt-hash-between-php-and-node-js/
How to compare a bcrypt hash between PHP and Node.js
Discover how to compare a bcrypt hash generated in PHP with password_hash(), using Node.js and the bcrypt module
stanislas.blog
http://docs.php.net/manual/kr/function.password-hash.php
PHP: password_hash - Manual
Since 2017, NIST recommends using a secret input when hashing memorized secrets such as passwords. By mixing in a secret input (commonly called a "pepper"), one prevents an attacker from brute-forcing the password hashes altogether, even if they have the h
docs.php.net
'웹 서버 구축' 카테고리의 다른 글
php.ini 업로드 용량 설정 (0) | 2021.10.08 |
---|---|
폼 전송후 뒤로가기를 막는 방법 (0) | 2021.10.07 |
한글로만 구성 정규 표현식 (0) | 2021.09.24 |
.htaccess 설정 파일 (URL 재작성) (0) | 2021.09.19 |
PDOStatement::bindValue (0) | 2021.09.17 |