зеркало из https://github.com/github/ruby.git
* ext/openssl/ossl_digest.c: Document OpenSSL::Digest::digest and add
an example to OpenSSL::Digest. Patch by Sylvain Daubert. [Ruby 1.9 - Bug #5166] * ext/openssl/lib/openssl/digest.rb (module OpenSSL): ditto git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@33065 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
ef039de560
Коммит
b0fb4fb689
|
@ -1,3 +1,10 @@
|
|||
Thu Aug 25 09:25:48 2011 Eric Hodel <drbrain@segment7.net>
|
||||
|
||||
* ext/openssl/ossl_digest.c: Document OpenSSL::Digest::digest and add
|
||||
an example to OpenSSL::Digest. Patch by Sylvain Daubert.
|
||||
[Ruby 1.9 - Bug #5166]
|
||||
* ext/openssl/lib/openssl/digest.rb (module OpenSSL): ditto
|
||||
|
||||
Thu Aug 25 08:19:43 2011 Koichi Sasada <ko1@atdot.net>
|
||||
|
||||
* vm.c (vm_make_env_each): work around to solve Bug #2729.
|
||||
|
|
|
@ -22,6 +22,17 @@ module OpenSSL
|
|||
alg += %w(SHA224 SHA256 SHA384 SHA512)
|
||||
end
|
||||
|
||||
# Return the +data+ hash computed with +name+ Digest. +name+ is either the
|
||||
# long name or short name of a supported digest algorithm.
|
||||
#
|
||||
# === Examples
|
||||
#
|
||||
# OpenSSL::Digest.digest("SHA256, "abc")
|
||||
#
|
||||
# which is equivalent to:
|
||||
#
|
||||
# OpenSSL::Digest::SHA256.digest("abc")
|
||||
|
||||
def self.digest(name, data)
|
||||
super(data, name)
|
||||
end
|
||||
|
|
|
@ -403,6 +403,17 @@ Init_ossl_digest()
|
|||
* sha256 << data2
|
||||
* sha256 << data3
|
||||
* digest = sha256.digest
|
||||
*
|
||||
* === Reuse a Digest instance
|
||||
*
|
||||
* data1 = File.read('file1')
|
||||
* sha256 = OpenSSL::Digest::SHA256.new
|
||||
* digest1 = sha256.digest(data1)
|
||||
*
|
||||
* data2 = File.read('file2')
|
||||
* sha256.reset
|
||||
* digest2 = sha256.digest(data2)
|
||||
*
|
||||
*/
|
||||
cDigest = rb_define_class_under(mOSSL, "Digest", rb_path2class("Digest::Class"));
|
||||
/* Document-class: OpenSSL::Digest::DigestError
|
||||
|
|
Загрузка…
Ссылка в новой задаче