summaryrefslogtreecommitdiff
path: root/ext/md5/md5.txt
diff options
context:
space:
mode:
authorknu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2001-05-16 21:34:18 +0000
committerknu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2001-05-16 21:34:18 +0000
commit4202ff1a9fba06137f58c0c757ada7e5c11b3ac5 (patch)
tree1fc8d56d695d283a324c5b8936476b762b66dc6a /ext/md5/md5.txt
parentb7d38617e33b6d401d72cf49c7596c47a5f2ccab (diff)
* ext/md5/md5.txt: make wording fixes, and mention the newly added
method: "<<". * ext/md5/md5.txt.jp: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@1403 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/md5/md5.txt')
-rw-r--r--ext/md5/md5.txt16
1 files changed, 9 insertions, 7 deletions
diff --git a/ext/md5/md5.txt b/ext/md5/md5.txt
index e2b072401b..211a5302b5 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 = ''
@@ -37,11 +38,12 @@ Methods:
end
update(str)
+ << 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).
+ m.update(a+b) and m << a << b is equivalent to m << a+b.
-------------------------------------------------------
Local variables: