From ba9ca639dcabb9d64079e9219640099251af9ac0 Mon Sep 17 00:00:00 2001 From: rhe Date: Sun, 19 Jun 2016 09:29:59 +0000 Subject: openssl: implement initialize_copy method for PKey classes * ext/openssl/ossl_pkey_dh.c, ext/openssl/ossl_pkey_dsa.c, ext/openssl/ossl_pkey_ec.c, ext/openssl/ossl_pkey_rsa.c: Implement initialize_copy method for OpenSSL::PKey::*. [ruby-core:75504] [Bug #12381] * test/openssl/test_pkey_dh.rb, test/openssl/test_pkey_dsa.rb, test/openssl/test_pkey_ec.rb, test/openssl/test_pkey_rsa.rb: Test they actually copy the OpenSSL objects, and modifications to cloned object don't affect the original object. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55454 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/test_pkey_dsa.rb | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'test/test_pkey_dsa.rb') diff --git a/test/test_pkey_dsa.rb b/test/test_pkey_dsa.rb index 211c0342..9c29c034 100644 --- a/test/test_pkey_dsa.rb +++ b/test/test_pkey_dsa.rb @@ -230,6 +230,14 @@ YNMbNw== assert(key3.private?) end + def test_dup + key = OpenSSL::PKey::DSA.new(256) + key2 = key.dup + assert_equal key.params, key2.params + key2.set_pqg(key2.p + 1, key2.q, key2.g) + assert_not_equal key.params, key2.params + end + private def check_sign_verify(digest) -- cgit v1.2.3