js 加密 解密的方法,通过秘钥解密,保险多了

//字符串的加密解密
    function encrypt(str, pwd) {
      if(pwd == null || pwd.length <= 0) {
        alert("Please enter a password with which to encrypt the message.");
        return null;
      }
      var prand = "";
      for(var i=0; i 10) {
        prand = (parseInt(prand.substring(0, 10)) + parseInt(prand.substring(10, prand.length))).toString();
      }
      prand = (mult * prand + incr) % modu;
      var enc_chr = "";
      var enc_str = "";
      for(var i=0; i 10) {
        prand = (parseInt(prand.substring(0, 10)) + parseInt(prand.substring(10, prand.length))).toString();
      }
      prand = (mult * prand + incr) % modu;
      var enc_chr = "";
      var enc_str = "";
      for(var i=0; i


转载于:https://my.oschina.net/felumanman/blog/325184

你可能感兴趣的:(js 加密 解密的方法,通过秘钥解密,保险多了)