1.0.4 • Published 5 years ago

pwd-enc v1.0.4

Weekly downloads
-
License
ISC
Repository
-
Last release
5 years ago

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)