From 62b39960f4a1ea3b95bd44358250497e1daa2a78 Mon Sep 17 00:00:00 2001 From: gotoyuzo Date: Wed, 30 Jun 2004 18:34:59 +0000 Subject: * ext/openssl/ossl_pkey_dh.c (ossl_dh_initialize): should create empty pkey object if no argument is passed. [ruby-talk:103328] * ext/openssl/ossl_pkey_dsa.c (ossl_dsa_initialize): ditto. * ext/openssl/ossl_pkey_rsa.c (ossl_rsa_initialize): ditto. * ext/openssl/ossl_pkey_dh.c: add new methods: OpenSSL::PKey::DH#p, OpenSSL::PKey::DH#p=, OpenSSL::PKey::DH#g, OpenSSL::PKey::DH#g=, OpenSSL::PKey::DH#pub_key, OpenSSL::PKey::DH#pub_key=, OpenSSL::PKey::DH#priv_key and OpenSSL::PKey::DH#priv_key=. * ext/openssl/ossl_pkey_dsa.c: add new methods: OpenSSL::PKey::DSA#p, OpenSSL::PKey::DSA#p=, OpenSSL::PKey::DSA#q, OpenSSL::PKey::DSA#q=, OpenSSL::PKey::DSA#g, OpenSSL::PKey::DSA#g=, OpenSSL::PKey::DSA#pub_key, OpenSSL::PKey::DSA#pub_key=, OpenSSL::PKey::DSA#priv_key and OpenSSL::PKey::DSA#priv_key=. git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@6551 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index 687237f3c..760c13de0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,23 @@ +Thu Jul 1 03:33:55 2004 GOTOU Yuuzou + + * ext/openssl/ossl_pkey_dh.c (ossl_dh_initialize): should create + empty pkey object if no argument is passed. [ruby-talk:103328] + + * ext/openssl/ossl_pkey_dsa.c (ossl_dsa_initialize): ditto. + + * ext/openssl/ossl_pkey_rsa.c (ossl_rsa_initialize): ditto. + + * ext/openssl/ossl_pkey_dh.c: add new methods: OpenSSL::PKey::DH#p, + OpenSSL::PKey::DH#p=, OpenSSL::PKey::DH#g, OpenSSL::PKey::DH#g=, + OpenSSL::PKey::DH#pub_key, OpenSSL::PKey::DH#pub_key=, + OpenSSL::PKey::DH#priv_key and OpenSSL::PKey::DH#priv_key=. + + * ext/openssl/ossl_pkey_dsa.c: add new methods: OpenSSL::PKey::DSA#p, + OpenSSL::PKey::DSA#p=, OpenSSL::PKey::DSA#q, OpenSSL::PKey::DSA#q=, + OpenSSL::PKey::DSA#g, OpenSSL::PKey::DSA#g=, + OpenSSL::PKey::DSA#pub_key, OpenSSL::PKey::DSA#pub_key=, + OpenSSL::PKey::DSA#priv_key and OpenSSL::PKey::DSA#priv_key=. + Thu Jul 1 03:16:09 2004 GOTOU Yuuzou * ext/openssl/ossl_ssl.c (ossl_ssl_read): take optional second argument -- cgit