summaryrefslogtreecommitdiff
path: root/ext/md5
diff options
context:
space:
mode:
Diffstat (limited to 'ext/md5')
-rw-r--r--ext/md5/md5.txt11
-rw-r--r--ext/md5/md5.txt.jp12
2 files changed, 23 insertions, 0 deletions
diff --git a/ext/md5/md5.txt b/ext/md5/md5.txt
index 0eca7c9025..e2b072401b 100644
--- a/ext/md5/md5.txt
+++ b/ext/md5/md5.txt
@@ -25,6 +25,17 @@ Methods:
returns have value of the added strings as a 16 bytes string.
+ hexdigest
+
+ returns have value of the added strings as an 32 bytes ASCII
+ string. This method is equal to:
+
+ def hexdigest
+ ret = ''
+ digest.each_byte {|i| ret << sprintf('%02x', i) }
+ ret
+ end
+
update(str)
Update the MD5 object with the string. Repeated calls are
diff --git a/ext/md5/md5.txt.jp b/ext/md5/md5.txt.jp
index a1451f1175..04cf32908d 100644
--- a/ext/md5/md5.txt.jp
+++ b/ext/md5/md5.txt.jp
@@ -26,6 +26,18 @@ Methods:
今までに追加した文字列に対するハッシュ値を16バイト長の文字列で
返す.
+ hexdigest
+
+ 今までに追加した文字列に対するハッシュ値を、ASCIIコードを使って
+ 16進数の列を示す'fe5c2235f48d2bcc911afabea23cd5aa'のような32文字
+ の文字列にエンコードして返す。Rubyで書くと以下と同じ。
+
+ def hexdigest
+ ret = ''
+ digest.each_byte {|i| ret << sprintf('%02x', i) }
+ ret
+ end
+
update(str)
MD5オブジェクトに文字列を追加する。複数回updateを呼ぶことは文