package md5
import "crypto/md5"
md5包实现了MD5哈希算法,参见RFC 1321。
Index
Examples
Constants
const BlockSize = 64
MD5字节块大小。
const Size = 16
MD5校验和字节数。
func Sum
func Sum(data []byte) [Size]byte
返回数据data的MD5校验和。
Example
data := []byte("These pretzels are making me thirsty.")
fmt.Printf("%x", md5.Sum(data))
Output:
b0804ec967f48520697662a204f5fe72
func New
func New() hash.Hash
返回一个新的使用MD5校验的hash.Hash接口。
Example
h := md5.New()
io.WriteString(h, "The fog is getting thicker!")
io.WriteString(h, "And Leon's getting laaarger!")
fmt.Printf("%x", h.Sum(nil))
Output:
e2c569be17396eca2a2e3c11578123ed