3DES encryption for FT APIs
npm install nodejs3desnpm 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
``