Skip to content
/ CrypJS Public

πŸ”’ Extremely Simple AES-256-CBC Encryption And Decryption

Notifications You must be signed in to change notification settings

TCWTEAM/CrypJS

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

2 Commits
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

CrypJS

πŸ”’ Extremely Simple AES-256-CBC Encryption And Decryption

Install

npm install --save crypjs

Example

const crypjs = require('crypjs')

let string = "hi"

//has to be a 32 character string
let password = "arandom32bitstring39239483483498"

let encryptedstring = crypjs.encrypt(string, password)
//output = 8c87ea9d402d106803455c0108a23b4a:ad548494a73119d254791efef8c08d07

let decryptedstring = crypjs.decrypt(encryptedstring, password)
//output = hi

About

πŸ”’ Extremely Simple AES-256-CBC Encryption And Decryption

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published