- 授权协议: Public Domain
- 开发语言: JavaScript
- 操作系统: 跨平台
- 软件首页: http://blog.faultylabs.com/?d=md5
软件介绍
这是一个纯 JavaScript 实现的 MD5 加密库。
使用方法:
<script type="text/javascript" src="md5.js"></script>
<script type="text/javascript" >
// quick test
var input1 = "ABC";
var input2 = ["A","B","C"];
var input3 = [0x41, 0x42, 0x43];
alert(faultylabs.MD5(input1) == "902FBDD2B1DF0C4F70B4A5D23525E932");
alert(faultylabs.MD5(input2) == "902FBDD2B1DF0C4F70B4A5D23525E932");
alert(faultylabs.MD5(input3) == "902FBDD2B1DF0C4F70B4A5D23525E932");
</script>
Professional JavaScript for Web Developers
Nicholas C. Zakas / Wrox / 2009-1-14 / USD 49.99
This eagerly anticipated update to the breakout book on JavaScript offers you an in-depth look at the numerous advances to the techniques and technology of the JavaScript language. You'll see why Java......一起来看看 《Professional JavaScript for Web Developers》 这本书的介绍吧!
