mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* 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/branches/ruby_1_8@9130 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
f18b418982
commit
19dbb4c3c1
2 changed files with 13 additions and 0 deletions
|
@ -1,3 +1,10 @@
|
|||
Mon Sep 12 20:53:06 2005 GOTOU Yuuzou <gotoyuzo@notwork.org>
|
||||
|
||||
* 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 14:03:33 2005 Yukihiro Matsumoto <matz@ruby-lang.org>
|
||||
|
||||
* test/dbm/test_dbm.rb: remove locking test, which may not be
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Add table
Reference in a new issue