노드에서 hmac 사용 / open ssl / openssl hmac 사용법 / 노드제이에스 / node js
OpenSSL hmac in NodeJS
ref. 1 과 ref. 2 를 참고하면 대략적으로 사용법을 알 수 있다.
const crypto = require('crypto');
const hmac = crypto.createHmac('sha256', 'a secret');
hmac.update('some data to hash');
console.log(hmac.digest('hex'));
댓글 없음:
댓글 쓰기