summaryrefslogtreecommitdiffstats
path: root/ext/openssl/ossl_pkey.c
diff options
context:
space:
mode:
authoremboss <emboss@ruby-lang.org>2011-08-16 19:59:38 +0000
committeremboss <emboss@ruby-lang.org>2011-08-16 19:59:38 +0000
commit1652feeb6343a282cd2013d25738976d7a43dcfd (patch)
tree0cf042f393edcb9ea85febff30752f9575269e06 /ext/openssl/ossl_pkey.c
parentb7445d4e2d5c1477293832e972069f9397857baf (diff)
downloadruby-openssl-history-1652feeb6343a282cd2013d25738976d7a43dcfd.tar.gz
* ext/openssl/ossl_pkey.c: corrected docs, OpenSSL::PKey::DH does
*not* support #sign/verify. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@32987 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/openssl/ossl_pkey.c')
-rw-r--r--ext/openssl/ossl_pkey.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/openssl/ossl_pkey.c b/ext/openssl/ossl_pkey.c
index b8480de..f785e66 100644
--- a/ext/openssl/ossl_pkey.c
+++ b/ext/openssl/ossl_pkey.c
@@ -369,11 +369,11 @@ Init_ossl_pkey()
/* 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);