From c3a7409b92f65266bddd74e13d68caed6edcb2f5 Mon Sep 17 00:00:00 2001 From: gotoyuzo Date: Mon, 21 Jun 2004 16:36:19 +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/trunk@6487 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index 9041831e6..924b49997 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,23 @@ +Tue Jun 22 01:32:40 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=. + Mon Jun 21 09:24:51 2004 NAKAMURA Usaku * win32/win32.c (rb_w32_opendir): should set errno if error occurs -- cgit