类 Digest::MD5

一个用于计算消息摘要的类,它使用 RSA Data Security, Inc. 的 MD5 消息摘要算法,该算法在 RFC1321 中进行了描述。

MD5 计算 128 位(16 字节)的摘要。

示例

require 'digest'

# Compute a complete digest
Digest::MD5.hexdigest 'abc'      #=> "90015098..."

# Compute digest by chunks
md5 = Digest::MD5.new               # =>#<Digest::MD5>
md5.update "ab"
md5 << "c"                           # alias for #update
md5.hexdigest                        # => "90015098..."

# Use the same object to compute another digest
md5.reset
md5 << "message"
md5.hexdigest                        # => "78e73102..."