mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* ext/digest/lib/digest.rb: new file.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10924 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
cc8ed209fc
commit
3d9fc0d7d0
2 changed files with 12 additions and 0 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
Thu Sep 14 01:02:25 2006 Tanaka Akira <akr@fsij.org>
|
||||||
|
|
||||||
|
* ext/digest/lib/digest.rb: new file.
|
||||||
|
|
||||||
Wed Sep 13 18:43:05 2006 Yukihiro Matsumoto <matz@ruby-lang.org>
|
Wed Sep 13 18:43:05 2006 Yukihiro Matsumoto <matz@ruby-lang.org>
|
||||||
|
|
||||||
* README.EXT: English adjustment. [ruby-core:08851] and
|
* README.EXT: English adjustment. [ruby-core:08851] and
|
||||||
|
|
8
ext/digest/lib/digest.rb
Normal file
8
ext/digest/lib/digest.rb
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
module Digest
|
||||||
|
autoload "MD5", "digest/md5"
|
||||||
|
autoload "RMD160", "digest/rmd160"
|
||||||
|
autoload "SHA1", "digest/sha1"
|
||||||
|
autoload "SHA256", "digest/sha2"
|
||||||
|
autoload "SHA384", "digest/sha2"
|
||||||
|
autoload "SHA512", "digest/sha2"
|
||||||
|
end
|
Loading…
Reference in a new issue