1.0.0 • Published 6 years ago

nodejs3des v1.0.0

Weekly downloads
21
License
ISC
Repository
github
Last release
6 years ago

3DES 🔐 For FT APIs

npm install nodejs3des

//Encryption 
var _3DES = require('nodejs3des');

//Encryption key = "Tk_ksodk"
//Text to encrypt ==> "SMS"
_3DES.encrypt("Tk_ksodk", "SMS"); //PjBSczoWdA4=
//Decryption 
var _3DES = require('nodejs3des');

//Encryption key = "Tk_ksodk"
//Text to decrypt ==> "PjBSczoWdA4="
_3DES.decrypt("Tk_ksodk", "PjBSczoWdA4="); //SMS