就是md5加密
安装
npm install react-native-md5 --save
简单使用
import md5 from "react-native-md5";
let hex_md5v = md5.hex_md5( Date.now() +"" );
console.log(">>>>hex_md5:", hex_md5v);
let b64_md5v = md5.b64_md5( Date.now() +"" );
console.log(">>>>b64_md5:", b64_md5v);
let str_md5v = md5.str_md5( Date.now() +"" );
console.log(">>>>str_md5:", str_md5v);
let hex_hmac_md5v = md5.hex_hmac_md5("my_key", Date.now() +"" );
console.log(">>>>hex_hmac_md5:", hex_hmac_md5v);
let b64_hmac_md5v = md5.b64_hmac_md5("my_key", Date.now() +"" );
console.log(">>>>b64_hmac_md5:", b64_hmac_md5v);
let str_hmac_md5v = md5.str_hmac_md5("my_key", Date.now() +"" );
console.log(">>>>str_hmac_md5:", str_hmac_md5v);
网友评论