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