Skip to content

Commit 691e790

Browse files
committed
Formatted
1 parent 8e8219f commit 691e790

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

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

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

108-
109108
public String getValidResponseContent() {
110109
return validResponseContent;
111110
}
@@ -121,8 +120,9 @@ public String getEncryptedPremasterSecret() {
121120
public boolean isMsgPkcsConform() {
122121
return msgPkcsConform;
123122
}
123+
124124
public enum Type {
125-
125+
126126
FULL,
127127
FAST
128128
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ 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+
2425
public AttackDelegate() {
2526
}
2627

@@ -32,7 +33,6 @@ public void setExecuteAttack(boolean executeAttack) {
3233
this.executeAttack = executeAttack;
3334
}
3435

35-
3636
@Override
3737
public void applyDelegate(Config config) throws ConfigurationException {
3838
}

0 commit comments

Comments
 (0)