pwd-enc
v1.0.4
Published
Password encryption
Downloads
26
Maintainers
Readme
Install
Run the below mentioned url to install
npm install --save pwd-enc
Example
var pwdenc = require('pwd-enc');
var password="HelloWorld@123";
var encryptedPassword = pwdenc.EncryptPassword(password);
var decryptedPassword = pwdenc.DecryptPassword(encryptedPassword);
console.log(password, encryptedPassword, decryptedPassword)