상세 컨텐츠

본문 제목

리액트 | 리액트에서 비밀번호 암호화하는 방법

FrontEnd/React

by 유후(yufu) 2023. 2. 7. 01:06

본문

반응형

 

JavaScript에서 SHA-256 암호화를 구현하려면 crypto-js 라이브러리를 사용할 수 있습니다.

1. crypto-js 라이브러리 설치:

npm install crypto-js

 

2. 비밀번호 인코딩:

import { SHA256 } from 'crypto-js';

const password = 'mysecretpassword';
const hash = SHA256(password).toString();

console.log(hash);

 

3. 암호화 키를 설정하는 방법:

import { HmacSHA256 } from 'crypto-js';

const password = 'mysecretpassword';
const key = 'mysecretkey';
const hash = HmacSHA256(password, key).toString();

console.log(hash);

 

 

반응형

관련글 더보기