File tree Expand file tree Collapse file tree 2 files changed +5
-6
lines changed
src/main/java/de/rub/nds/tlsscanner/report/result Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Original file line number Diff line number Diff line change 3
3
<modelVersion >4.0.0</modelVersion >
4
4
<artifactId >TLS-Scanner</artifactId >
5
5
<groupId >de.rub.nds.tlsscanner</groupId >
6
- <version >2.1 </version >
6
+ <version >2.2 </version >
7
7
<packaging >jar</packaging >
8
8
<dependencies >
9
9
<dependency >
10
10
<groupId >de.rub.nds.tlsattacker</groupId >
11
11
<artifactId >TLS-Core</artifactId >
12
- <version >2.3 </version >
12
+ <version >2.4 </version >
13
13
</dependency >
14
14
<dependency >
15
15
<groupId >de.rub.nds.tlsattacker</groupId >
16
16
<artifactId >Attacks</artifactId >
17
- <version >2.3 </version >
17
+ <version >2.4 </version >
18
18
</dependency >
19
19
<dependency >
20
20
<groupId >junit</groupId >
Original file line number Diff line number Diff line change 8
8
import de .rub .nds .tlsattacker .core .constants .ExtensionType ;
9
9
import de .rub .nds .tlsscanner .constants .ProbeType ;
10
10
import de .rub .nds .tlsscanner .report .SiteReport ;
11
- import de .rub .nds .tlsscanner .report .result .ProbeResult ;
12
11
import java .util .List ;
13
12
14
13
/**
@@ -36,10 +35,10 @@ public void merge(SiteReport report) {
36
35
}
37
36
for (ExtensionType type : allSupportedExtensions ) {
38
37
if (type == ExtensionType .ENCRYPT_THEN_MAC ) {
39
- extendedMasterSecret = true ;
38
+ encryptThenMac = true ;
40
39
}
41
40
if (type == ExtensionType .EXTENDED_MASTER_SECRET ) {
42
- encryptThenMac = true ;
41
+ extendedMasterSecret = true ;
43
42
}
44
43
if (type == ExtensionType .RENEGOTIATION_INFO ) {
45
44
secureRenegotiation = true ;
You can’t perform that action at this time.
0 commit comments