美文网首页程序员
js对字符串进行加密和解密

js对字符串进行加密和解密

作者: Senao | 来源:发表于2018-06-07 14:18 被阅读0次
    function compileStr(code){ //对字符串进行加密       
      var c=String.fromCharCode(code.charCodeAt(0)+code.length);
     for(var i=1;i<code.length;i++)
      {      
       c+=String.fromCharCode(code.charCodeAt(i)+code.charCodeAt(i-1));
     }   
     return escape(c);   }
    
    
    
    
    //字符串进行解密 
    function uncompileStr(code){      
     code=unescape(code);      
     var c=String.fromCharCode(code.charCodeAt(0)-code.length);      
     for(var i=1;i<code.length;i++)
     {      
      c+=String.fromCharCode(code.charCodeAt(i)-c.charCodeAt(i-1));      
     }      
     return c;   }
    

    相关文章

      网友评论

        本文标题:js对字符串进行加密和解密

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