美文网首页
react-native组件(3)--(react-native

react-native组件(3)--(react-native

作者: 吃肉666 | 来源:发表于2017-08-09 12:52 被阅读1041次

就是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);

相关文章

网友评论

      本文标题:react-native组件(3)--(react-native

      本文链接:https://www.haomeiwen.com/subject/yxgfrxtx.html