summaryrefslogtreecommitdiff
path: root/test/openssl
diff options
context:
space:
mode:
authorKazuki Yamaguchi <k@rhe.jp>2021-03-16 22:05:04 +0900
committerKazuki Yamaguchi <k@rhe.jp>2021-03-16 22:30:18 +0900
commit44d67128a827c65d1a3867c5d8fd190d10aa1dd2 (patch)
tree2be4ceecbaf1cf6a042f8409f3c298ea7c7d4525 /test/openssl
parent6c7cb00c094332a208cf36e5cd723a9ba60c41b8 (diff)
test/openssl/test_cipher: skip AES-CCM tests on OpenSSL <= 1.1.1b
AES CCM mode in OpenSSL <= 1.1.1b was overly strict in the parameters assignment order. This has been relaxed by OpenSSL 1.1.1c. https://github.com/openssl/openssl/commit/b48e3be947ddc5da6b5a86db8341081c72b9a4ee The test case is failing on Ubuntu 18.04 because it still uses the initial 1.1.1 release and has the issue: http://rubyci.s3.amazonaws.com/graviton2/ruby-master/log/20210316T120003Z.fail.html.gz
Diffstat (limited to 'test/openssl')
-rw-r--r--test/openssl/test_cipher.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/openssl/test_cipher.rb b/test/openssl/test_cipher.rb
index 45ec94a7d6..6d18c0c85c 100644
--- a/test/openssl/test_cipher.rb
+++ b/test/openssl/test_cipher.rb
@@ -214,7 +214,7 @@ class OpenSSL::TestCipher < OpenSSL::TestCase
assert_raise(OpenSSL::Cipher::CipherError) { cipher.update(ct2) }
end if has_cipher?("aes-128-ccm") &&
OpenSSL::Cipher.new("aes-128-ccm").authenticated? &&
- OpenSSL::OPENSSL_VERSION_NUMBER >= 0x10101000 # version >= v1.1.1
+ OpenSSL::OPENSSL_VERSION_NUMBER >= 0x1010103f # version >= 1.1.1c
def test_aes_gcm
# GCM spec Appendix B Test Case 4