summaryrefslogtreecommitdiff
path: root/test/openssl
diff options
context:
space:
mode:
authoryugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-11-15 11:43:42 +0000
committeryugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-11-15 11:43:42 +0000
commit856e1f17f1846a2ad077aa7b0da6a2b8399fd7b7 (patch)
tree8243cfe620bef7a9affb01206e97f198b53f856f /test/openssl
parent7d4e89a7c09bc00e5ed00b862df19ad3c462bd37 (diff)
merges r29237 and r29238 from trunk into ruby_1_9_2.
-- * ext/openssl/ossl_bn.c (ossl_bn_is_prime): fix comparison with rb_scan_args. Before this fix, OpenSSL::BN#prime? is fully broken. -- Add ML ref [ruby-dev:42225] for r29237. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_2@29794 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/openssl')
-rw-r--r--test/openssl/test_bn.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/test/openssl/test_bn.rb b/test/openssl/test_bn.rb
new file mode 100644
index 0000000000..da77a556b0
--- /dev/null
+++ b/test/openssl/test_bn.rb
@@ -0,0 +1,17 @@
+begin
+ require "openssl"
+rescue LoadError
+end
+require "digest/md5"
+require "test/unit"
+
+if defined?(OpenSSL)
+
+class OpenSSL::TestBN < Test::Unit::TestCase
+ def test_prime_p
+ OpenSSL::BN.new((2 ** 107 - 1).to_s(16), 16).prime?
+ OpenSSL::BN.new((2 ** 127 - 1).to_s(16), 16).prime?(1)
+ end
+end
+
+end