JavaScript:md 5、base 64、shar 1などの暗号化アルゴリズム

904 ワード

  • md 5.js
  • 
      
      var hash = hex_md5("123dafd");
        alert(hash)
      
    
  • base 64.js
  • 
      
            var b = new Base64();  
            var str = b.encode("admin:admin");  
            alert("base64 encode:" + str);  
         //  
            str = b.decode(str);  
            alert("base64 decode:" + str);  
    
    
  • shar 1.js
  • 
    
      var sha = hex_sha1('mima123465')
        alert(sha)   
      
    
    参考:
  • http://pajhome.org.uk/crypt/md5/index.html
  • http://www.cnblogs.com/mofish/archive/2012/02/25/2367858.html