From 7877b56572b07988c9994625093be884d3136c79 Mon Sep 17 00:00:00 2001 From: gotoyuzo Date: Mon, 12 Sep 2005 11:55:25 +0000 Subject: * test/openssl/test_pkcs7.rb (test_enveloped): skip this test to avoid a bug of PKCS7_enctypt() (only if ext/openssl is compiled with OpenSSL-0.9.7d or earlier versions). http://www.mail-archive.com/openssl-dev@openssl.org/msg17376.html git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9130 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 7 +++++++ test/openssl/test_pkcs7.rb | 6 ++++++ 2 files changed, 13 insertions(+) diff --git a/ChangeLog b/ChangeLog index 0ee65131bf..5d76a3a6df 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +Mon Sep 12 20:53:06 2005 GOTOU Yuuzou + + * test/openssl/test_pkcs7.rb (test_enveloped): skip this test + to avoid a bug of PKCS7_enctypt() (only if ext/openssl is + compiled with OpenSSL-0.9.7d or earlier versions). + http://www.mail-archive.com/openssl-dev@openssl.org/msg17376.html + Mon Sep 12 20:32:00 2005 Hirokazu Yamamoto * win32/win32.[hc] (rb_w32_argv_size, ...): reverted my latest change diff --git a/test/openssl/test_pkcs7.rb b/test/openssl/test_pkcs7.rb index a2153af363..9b472c1795 100644 --- a/test/openssl/test_pkcs7.rb +++ b/test/openssl/test_pkcs7.rb @@ -125,6 +125,12 @@ class OpenSSL::TestPKCS7 < Test::Unit::TestCase end def test_enveloped + if OpenSSL::OPENSSL_VERSION_NUMBER <= 0x0090704f + # PKCS7_encrypt() of OpenSSL-0.9.7d goes to SEGV. + # http://www.mail-archive.com/openssl-dev@openssl.org/msg17376.html + return + end + certs = [@ee1_cert, @ee2_cert] cipher = OpenSSL::Cipher::AES.new("128-CBC") data = "aaaaa\nbbbbb\nccccc\n" -- cgit v1.2.3