File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed
TLS-Core/src/main/java/de/rub/nds/tlsattacker/core/constants Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -680,10 +680,14 @@ public static List<CipherSuite> getImplemented() {
680680 list .add (TLS_DH_RSA_WITH_AES_256_GCM_SHA384 );
681681 list .add (TLS_DH_RSA_WITH_AES_128_GCM_SHA256 );
682682 list .add (TLS_DH_DSS_WITH_AES_256_GCM_SHA384 );
683+ list .add (TLS_DH_anon_WITH_AES_128_GCM_SHA256 );
684+ list .add (TLS_DH_anon_WITH_AES_256_GCM_SHA384 );
683685 list .add (TLS_DHE_RSA_WITH_AES_128_GCM_SHA256 );
684686 list .add (TLS_DHE_RSA_WITH_AES_256_GCM_SHA384 );
685687 list .add (TLS_DHE_RSA_WITH_AES_128_CBC_SHA256 );
686688 list .add (TLS_DHE_RSA_WITH_AES_256_CBC_SHA256 );
689+ list .add (TLS_DH_anon_WITH_AES_128_CBC_SHA256 );
690+ list .add (TLS_DH_anon_WITH_AES_256_CBC_SHA256 );
687691 list .add (TLS_DHE_RSA_WITH_DES_CBC_SHA );
688692 list .add (TLS_DHE_RSA_WITH_AES_128_CCM );
689693 list .add (TLS_DHE_RSA_WITH_AES_256_CCM );
You can’t perform that action at this time.
0 commit comments