summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorknu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2001-08-16 08:10:47 +0000
committerknu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2001-08-16 08:10:47 +0000
commit6e4f4c403a41b004ccad699e706dff4db0578a62 (patch)
treeb0db2bd89969e9ee8b9d380ff66c09428d087cb4 /doc
parent776b8e04b72c0f01eab054de37cb3640c8f2d260 (diff)
Mention ext/digest.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@1695 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'doc')
-rw-r--r--doc/NEWS13
1 files changed, 13 insertions, 0 deletions
diff --git a/doc/NEWS b/doc/NEWS
index fa4cac5766..1900db022a 100644
--- a/doc/NEWS
+++ b/doc/NEWS
@@ -1,5 +1,18 @@
Summary of the changes since 1.6.4:
+: Digest module
+
+ Added as a replacement for md5 and sha1 modules.
+
+ require 'digest/md5'
+ include Digest
+
+ md = MD5.new
+ md << "abc"
+ puts md
+
+ puts MD5.hexdigest("123")
+
: Struct
Fixed to check frozen and taint status before modifying.