aes256cbc
v2.0.0
Published
It is a JavaScript library that provides cryptographic functionality, including AES encryption and decryption
Downloads
3
Readme
Installation
npm i aes256cbc
or
yarn add aes256cbc
Usage
import {SECURITY} from 'aes256cbc';
useEffect(()=>{ let encryptedText = SECURITY.encrypt('Applaunch') console.log('encryptedText',encryptedText) console.log(SECURITY.decrypt(encryptedText)) },[])