Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- error
- android
- 해석
- mariadb
- C lanuage
- 자바
- C
- server
- 구글
- ubuntu
- caddy
- java
- techEmpower
- javascript
- it
- php
- 개발자
- H2O
- 컴퓨터과학총론
- MySQL
- 안드로이드
- unity
- 프래그먼트
- 개발
- centOS7
- kakao
- 한글
- 번역
- NGINX
- Portfolio
Archives
- Today
- Total
개발모음집
Compare data stored as password_hash in PHP with js 본문
password_hash($password,PASSWORD_BCRYPT)
위의 코드같이 php password_hash로 저장한 데이터를
bcrypt.compare(input.password, database.password.replace(/^\$2y(.+)$/i, '\$2a$1'),
function(err, result) {
console.log(result);
});
위 js 코드로 확인할 수 있다.
출처 : https://stackoverflow.com/questions/27928873/passwordsalt-hashing-and-verifying-in-php-and-or-nodejs
'Server > node.js' 카테고리의 다른 글
nodejs mysql2 error (0) | 2020.03.31 |
---|---|
express mysql serverStatus = 3, update query가 되지 않는 문제 (0) | 2020.03.25 |
nodejs-mysql sql table name parameter값넘기는 방법 (0) | 2020.03.17 |
express github webhook settings (0) | 2020.01.13 |
package-lock.json error (0) | 2020.01.09 |