md5:
var crypto = require('crypto');
function md5 (text) {
return crypto.createHash('md5').update(text).digest('hex');
};
console.log(md5('root').toUpperCase());
md5:
var crypto = require('crypto');
function md5 (text) {
return crypto.createHash('md5').update(text).digest('hex');
};
console.log(md5('root').toUpperCase());