npm安装:
npm install --save js-md5;
在需要用到的文件中使用:
import md5 from 'js-md5';
var str = '123456';
var md32 = md5(str); //32位小写加密;//e10adc3949ba59abbe56e057f20f883e
var mdUpperCase32 = md32.toUpperCase() //32位大写加密;//E10ADC3949BA59ABBE56E057F20F883E
var md16 = md32.substr(8, 16); //16位小写加密;//49ba59abbe56e057
var mdUpperCase16 = md16.toUpperCase() //16位大写加密;//49BA59ABBE56E057