ruby-changes:20940
From: emboss <ko1@a...>
Date: Wed, 17 Aug 2011 05:06:24 +0900 (JST)
Subject: [ruby-changes:20940] emboss:r32989 (ruby_1_9_3): * backport r32987 from trunk.
emboss 2011-08-17 05:06:13 +0900 (Wed, 17 Aug 2011) New Revision: 32989 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=32989 Log: * backport r32987 from trunk. * ext/openssl/ossl_pkey.c: corrected docs, OpenSSL::PKey::DH does *not* support #sign/verify. Modified files: branches/ruby_1_9_3/ChangeLog branches/ruby_1_9_3/ext/openssl/ossl_pkey.c Index: ruby_1_9_3/ChangeLog =================================================================== --- ruby_1_9_3/ChangeLog (revision 32988) +++ ruby_1_9_3/ChangeLog (revision 32989) @@ -1,3 +1,10 @@ +Wed Aug 17 05:02:25 2011 Martin Bosslet <Martin.Bosslet@g...> + + * backport r32987 from trunk. + + * ext/openssl/ossl_pkey.c: corrected docs, OpenSSL::PKey::DH does + *not* support #sign/verify. + Tue Aug 16 18:56:54 2011 Nobuyoshi Nakada <nobu@r...> * vm.c (ruby_threadptr_data_type): rename to hide. Index: ruby_1_9_3/ext/openssl/ossl_pkey.c =================================================================== --- ruby_1_9_3/ext/openssl/ossl_pkey.c (revision 32988) +++ ruby_1_9_3/ext/openssl/ossl_pkey.c (revision 32989) @@ -370,11 +370,11 @@ /* Document-class: OpenSSL::PKey::PKey * * An abstract class that bundles signature creation (PKey#sign) and - * validation (PKey#verify) that is common to all implementations: + * validation (PKey#verify) that is common to all implementations except + * OpenSSL::PKey::DH * * OpenSSL::PKey::RSA * * OpenSSL::PKey::DSA * * OpenSSL::PKey::EC - * * OpenSSL::PKey::DH */ cPKey = rb_define_class_under(mPKey, "PKey", rb_cObject); -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/