summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authornaruse <naruse@ruby-lang.org>2010-09-13 00:40:10 +0000
committernaruse <naruse@ruby-lang.org>2010-09-13 00:40:10 +0000
commit2bdf19f4e2cffd1165cbbb0ca084fa696166c47b (patch)
tree0bec6819d3bc353574d24d0865b3c079a5903644 /test
parent9451d0ff3f80ab9a9c6b68b7feabc4460f985d06 (diff)
downloadruby-openssl-history-2bdf19f4e2cffd1165cbbb0ca084fa696166c47b.tar.gz
* ext/openssl/ossl_bn.c (ossl_bn_is_prime): fix comparison
with rb_scan_args. Before this fix, OpenSSL::BN#prime? is fully broken. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29237 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/test_bn.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/test/test_bn.rb b/test/test_bn.rb
new file mode 100644
index 0000000..da77a55
--- /dev/null
+++ b/test/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