Skip to content

Commit 0d34adf

Browse files
committed
Organized Members
1 parent 2d82e07 commit 0d34adf

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

Attacks/src/main/java/de/rub/nds/tlsattacker/attacks/config/BleichenbacherCommandConfig.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -105,11 +105,6 @@ public boolean isExecuteAttack() {
105105
return attackDelegate.isExecuteAttack();
106106
}
107107

108-
public enum Type {
109-
110-
FULL,
111-
FAST
112-
}
113108

114109
public String getValidResponseContent() {
115110
return validResponseContent;
@@ -126,5 +121,10 @@ public String getEncryptedPremasterSecret() {
126121
public boolean isMsgPkcsConform() {
127122
return msgPkcsConform;
128123
}
124+
public enum Type {
125+
126+
FULL,
127+
FAST
128+
}
129129

130130
}

Attacks/src/main/java/de/rub/nds/tlsattacker/attacks/config/delegate/AttackDelegate.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ public class AttackDelegate extends Delegate {
2121

2222
@Parameter(names = "-executeAttack", description = "If this value is set the Attack is not only Tested, but also executed (WARNING)")
2323
private boolean executeAttack = false;
24+
public AttackDelegate() {
25+
}
2426

2527
public boolean isExecuteAttack() {
2628
return executeAttack;
@@ -30,8 +32,6 @@ public void setExecuteAttack(boolean executeAttack) {
3032
this.executeAttack = executeAttack;
3133
}
3234

33-
public AttackDelegate() {
34-
}
3535

3636
@Override
3737
public void applyDelegate(Config config) throws ConfigurationException {

0 commit comments

Comments
 (0)