summaryrefslogtreecommitdiff
path: root/test/openssl/test_pkey_ec.rb
diff options
context:
space:
mode:
authorrhe <rhe@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-05-24 16:30:15 +0000
committerrhe <rhe@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-05-24 16:30:15 +0000
commit85500b6634290809aafc7be3eaec9f0c77b50ca9 (patch)
tree182bb2bc4938d4e0464613ca9eb06c99ea3f9c94 /test/openssl/test_pkey_ec.rb
parent8cbd74a362a918b6ce332d6240432318165527b0 (diff)
openssl: add EC.generate
* ext/openssl/ossl_pkey_ec.c (ec_key_new_from_group): Create a new EC_KEY on given EC group. Extracted from ossl_ec_key_initialize(). (ossl_ec_key_s_generate): Added. Create a new EC instance and generate a random private and public key. (ossl_ec_key_initialize): Use ec_key_new_from_group(). (Init_ossl_ec): Define the new method EC.generate. This change is for consistency with other PKey types. [ruby-core:45541] [Bug #6567] * test/openssl/test_pkey_ec.rb: Test that EC.generate works. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55152 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/openssl/test_pkey_ec.rb')
-rw-r--r--test/openssl/test_pkey_ec.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/openssl/test_pkey_ec.rb b/test/openssl/test_pkey_ec.rb
index 712507f609..4161e9b0e0 100644
--- a/test/openssl/test_pkey_ec.rb
+++ b/test/openssl/test_pkey_ec.rb
@@ -38,6 +38,15 @@ class OpenSSL::TestEC < OpenSSL::TestCase
end
end
+ def test_generate
+ assert_raise(OpenSSL::PKey::ECError) { OpenSSL::PKey::EC.generate("non-existent") }
+ g = OpenSSL::PKey::EC::Group.new("prime256v1")
+ ec = OpenSSL::PKey::EC.generate(g)
+ assert_equal(true, ec.private?)
+ ec = OpenSSL::PKey::EC.generate("prime256v1")
+ assert_equal(true, ec.private?)
+ end
+
def test_check_key
for key in @keys
assert_equal(true, key.check_key)