類別 Digest::MD5

一個使用 RSA Data Security, Inc. 在 RFC1321 中描述的 MD5 訊息摘要演算法計算訊息摘要的類別。

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..."