md5.js

const c = require("crypto-js");
var x = {};

x.md5 = function(data)
{
    return c.MD5(data).toString();
};

module.exports = x;

xxfaxy
1.6k 声望18 粉丝