JavaScript에서 SHA-256 암호화를 구현하려면 crypto-js 라이브러리를 사용할 수 있습니다.
npm install crypto-js
import { SHA256 } from 'crypto-js';
const password = 'mysecretpassword';
const hash = SHA256(password).toString();
console.log(hash);
import { HmacSHA256 } from 'crypto-js';
const password = 'mysecretpassword';
const key = 'mysecretkey';
const hash = HmacSHA256(password, key).toString();
console.log(hash);
리액트 | 페이지를 이동할 때 데이터도 함께 넘기는 방법 (0) | 2023.02.16 |
---|---|
Objects are not valid as a React child 해결 방법 (0) | 2023.02.16 |
리액트 & 클린코드 | 변수명 중복 피하기 (0) | 2023.02.16 |
리액트 | Props 사용할 때 주의사항 (0) | 2023.02.15 |
리액트 | 리액트란? 웹앱(Web/App)이란? (0) | 2023.01.12 |