Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ Rake::TestTask.new(:test_fips_internal) do |t|
'test/openssl/test_ns_spki.rb',
'test/openssl/test_ocsp.rb',
'test/openssl/test_pkcs12.rb',
'test/openssl/test_ssl.rb',
'test/openssl/test_ts.rb',
'test/openssl/test_x509cert.rb',
'test/openssl/test_x509crl.rb',
Expand Down
9 changes: 9 additions & 0 deletions test/openssl/test_ssl.rb
Original file line number Diff line number Diff line change
Expand Up @@ -685,6 +685,8 @@ def test_sslctx_set_params
end

def test_post_connect_check_with_anon_ciphers
# DH missing the q value on unknown named parameters is not FIPS-approved.
omit_on_fips
omit "AWS-LC does not support DHE ciphersuites" if aws_lc?

ctx_proc = -> ctx {
Expand Down Expand Up @@ -1747,6 +1749,9 @@ def test_sync_close_without_connect
end

def test_get_ephemeral_key
# kRSA is not FIPS-approved.
omit_on_fips

# kRSA
ctx_proc1 = proc { |ctx|
ctx.max_version = OpenSSL::SSL::TLS1_2_VERSION
Expand Down Expand Up @@ -1863,6 +1868,8 @@ def test_fallback_scsv
end

def test_tmp_dh_callback
# DH missing the q value on unknown named parameters is not FIPS-approved.
omit_on_fips
omit "AWS-LC does not support DHE ciphersuites" if aws_lc?

dh = Fixtures.pkey("dh-1")
Expand Down Expand Up @@ -2131,6 +2138,8 @@ def test_connect_works_when_setting_dh_callback_to_nil
end

def test_tmp_dh
# DH missing the q value on unknown named parameters is not FIPS-approved.
omit_on_fips
omit "AWS-LC does not support DHE ciphersuites" if aws_lc?

dh = Fixtures.pkey("dh-1")
Expand Down
Loading