From 6ebb345dd7c634461fa0cc272d3590a86ebe2aad Mon Sep 17 00:00:00 2001 From: naruse Date: Mon, 13 Sep 2010 00:40:10 +0000 Subject: * 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 --- test/openssl/test_bn.rb | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 test/openssl/test_bn.rb (limited to 'test') 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 -- cgit v1.2.3