ruby-changes:20938
From: emboss <ko1@a...>
Date: Wed, 17 Aug 2011 04:59:49 +0900 (JST)
Subject: [ruby-changes:20938] emboss:r32987 (trunk): * ext/openssl/ossl_pkey.c: corrected docs, OpenSSL::PKey::DH does
emboss 2011-08-17 04:59:38 +0900 (Wed, 17 Aug 2011) New Revision: 32987 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=32987 Log: * ext/openssl/ossl_pkey.c: corrected docs, OpenSSL::PKey::DH does *not* support #sign/verify. Modified files: trunk/ChangeLog trunk/ext/openssl/ossl_pkey.c Index: ChangeLog =================================================================== --- ChangeLog (revision 32986) +++ ChangeLog (revision 32987) @@ -1,3 +1,8 @@ +Wed Aug 17 04:54:25 2011 Martin Bosslet <Martin.Bosslet@g...> + + * 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: ext/openssl/ossl_pkey.c =================================================================== --- ext/openssl/ossl_pkey.c (revision 32986) +++ ext/openssl/ossl_pkey.c (revision 32987) @@ -369,11 +369,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/