Skip to content

Commit

Permalink
Remove DHE ciphers
Browse files Browse the repository at this point in the history
  • Loading branch information
hyperxpro committed Aug 27, 2023
1 parent 73d070a commit fab3dc9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@ public final class IntermediateCrypto {
Cipher.TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384,
Cipher.TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256,
Cipher.TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384,
Cipher.TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256,
Cipher.TLS_DHE_RSA_WITH_AES_256_GCM_SHA384,
Cipher.TLS_DHE_RSA_WITH_AES_128_GCM_SHA256
Cipher.TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256
);
}
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,7 @@ void simpleCipherTest() {
Cipher.TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384,
Cipher.TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256,
Cipher.TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384,
Cipher.TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256,
Cipher.TLS_DHE_RSA_WITH_AES_256_GCM_SHA384,
Cipher.TLS_DHE_RSA_WITH_AES_128_GCM_SHA256
Cipher.TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256
);

assertThat(ciphers, is(IntermediateCrypto.CIPHERS));
Expand Down

0 comments on commit fab3dc9

Please sign in to comment.