summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorknu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2001-05-16 21:38:37 +0000
committerknu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2001-05-16 21:38:37 +0000
commit0988c945224a32a1bf9cacf1d7787c5c98aed651 (patch)
tree5b194f7bca0a9675cd3fa2fe394a94614e2d6d1e /ext
parent840278d9cfdcb299ca25228f73676f7db279646d (diff)
* ext/md5/md5.txt: make wording fixes.
* ext/md5/md5.txt.jp: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@1404 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext')
-rw-r--r--ext/md5/md5.txt13
-rw-r--r--ext/md5/md5.txt.jp11
2 files changed, 13 insertions, 11 deletions
diff --git a/ext/md5/md5.txt b/ext/md5/md5.txt
index e2b072401b..f9a5f3a274 100644
--- a/ext/md5/md5.txt
+++ b/ext/md5/md5.txt
@@ -12,23 +12,24 @@ Class Methods:
new([str])
md5([str])
- creates a new MD5 object. If a string argument is given, it
+ Creates a new MD5 object. If a string argument is given, it
is added to the object. (see update.)
Methods:
clone
- copies the MD5 object.
+ Copies the MD5 object.
digest
- returns have value of the added strings as a 16 bytes string.
+ Returns the MD5 hash of the added strings as a string of 16
+ bytes.
hexdigest
- returns have value of the added strings as an 32 bytes ASCII
- string. This method is equal to:
+ Returns the MD5 hash of the added strings as a string of 32
+ hexadecimal digits. This method is equal to:
def hexdigest
ret = ''
@@ -38,7 +39,7 @@ Methods:
update(str)
- Update the MD5 object with the string. Repeated calls are
+ Update the MD5 object with the string str. Repeated calls are
equivalent to a single call with the concatenation of all the
arguments, i.e. m.update(a); m.update(b) is equivalent to
m.update(a+b).
diff --git a/ext/md5/md5.txt.jp b/ext/md5/md5.txt.jp
index 04cf32908d..7f6cbb002a 100644
--- a/ext/md5/md5.txt.jp
+++ b/ext/md5/md5.txt.jp
@@ -3,7 +3,7 @@
** MD5(クラス)
RFC1321に記述されているRSA Data Security, Inc. の MD5 Message-Digest
-Algorithmを実装するクラス.
+Algorithmを実装するクラス。
SuperClass: Object
@@ -13,18 +13,18 @@ Class Methods:
md5([str])
新しいMD5オブジェクトを生成する.文字列引数が与えられるとそれ
- を追加する(see update).
+ を追加する(see update)。
Methods:
clone
- MD5オブジェクトの複製を作る
+ MD5オブジェクトの複製を作る。
digest
今までに追加した文字列に対するハッシュ値を16バイト長の文字列で
- 返す.
+ 返す。
hexdigest
@@ -41,7 +41,8 @@ Methods:
update(str)
MD5オブジェクトに文字列を追加する。複数回updateを呼ぶことは文
- 字列を連結してupdateを呼ぶことと等しい.
+ 字列を連結してupdateを呼ぶことと等しい。すなわち m.update(a);
+ m.update(b) は m.update(a+b) と等価である。
-------------------------------------------------------
Local variables: