File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
src/main/java/de/rub/nds/tlsscanner/report Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -577,6 +577,10 @@ public void setSupportsTls12(Boolean supportsTls12) {
577
577
this .supportsTls12 = supportsTls12 ;
578
578
}
579
579
580
+ public Boolean supportsAnyTls13 () {
581
+ return supportsTls13 == Boolean .TRUE || supportsTls13Draft14 == Boolean .TRUE || supportsTls13Draft15 == Boolean .TRUE || supportsTls13Draft16 == Boolean .TRUE || supportsTls13Draft17 == Boolean .TRUE || supportsTls13Draft18 == Boolean .TRUE || supportsTls13Draft19 == Boolean .TRUE || supportsTls13Draft20 == Boolean .TRUE || supportsTls13Draft21 == Boolean .TRUE || supportsTls13Draft22 == Boolean .TRUE ;
582
+ }
583
+
580
584
public Boolean getSupportsTls13 () {
581
585
return supportsTls13 ;
582
586
}
@@ -1384,7 +1388,7 @@ public Boolean getClientHelloSizeIntolerance() {
1384
1388
public void setClientHelloSizeIntolerance (Boolean clientHelloSizeIntolerance ) {
1385
1389
this .clientHelloSizeIntolerance = clientHelloSizeIntolerance ;
1386
1390
}
1387
-
1391
+
1388
1392
@ Override
1389
1393
public String toString () {
1390
1394
return getStringReport ();
You can’t perform that action at this time.
0 commit comments