UNPKG

genesis-cli

Version:

It´s a CLI app to Create NodeJS projects like a boss

14 lines (10 loc) 340 B
const encryptPassword = {}; const salt = "passwordKey"; var crypto = require('crypto'); encryptPassword.getEncyptPassword = (password)=>{ var hash = crypto.createHmac('sha512', salt); /** Hashing algorithm sha512 */ hash.update(password); var value = hash.digest('hex'); return value; } module.exports = encryptPassword;