We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3aae8c4 + 0d8d9c4 commit c8e0d0cCopy full SHA for c8e0d0c
TLS-Core/src/main/java/de/rub/nds/tlsattacker/core/constants/CipherSuite.java
@@ -952,4 +952,13 @@ public boolean isSHA256() {
952
public boolean isAnon() {
953
return this.name().contains("anon");
954
}
955
+
956
+ public boolean isNull() {
957
+ return this.name().toLowerCase().contains("null");
958
+ }
959
960
+ // Note: We don't consider DES as weak for these purposes.
961
+ public boolean isWeak() {
962
+ return this.isExport() || this.isExportSymmetricCipher() || this.isAnon() || this.isNull();
963
964
0 commit comments