MD5使用方法:
const crypto = require('crypto'); var obj = crypto.createHash('md5'); // 可多次调用 update obj.update('123456'); obj.update('789'); console.log(obj.digest('hex'));
sha256 使用方法,可将‘md5’ 直接改成 'sha256' 就可以。