Skip to content

Commit 8902a00

Browse files
authored
Merge pull request #316 from RUB-NDS/tooltipFix
Reduced unnecessary list of possible values (new jcommander version)
2 parents 8ff7d9d + 904212d commit 8902a00

File tree

5 files changed

+6
-7
lines changed

5 files changed

+6
-7
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public class BleichenbacherCommandConfig extends AttackConfig {
3737
@ParametersDelegate
3838
private ProtocolVersionDelegate protocolVersionDelegate;
3939

40-
@Parameter(names = "-type", description = "Type of the Bleichenbacher Test results in a different number of server test quries (FAST/FULL)")
40+
@Parameter(names = "-type", description = "Type of the Bleichenbacher Test results in a different number of server test quries")
4141
private Type type = Type.FAST;
4242

4343
public BleichenbacherCommandConfig(GeneralDelegate delegate) {

TLS-Core/src/main/java/de/rub/nds/tlsattacker/core/config/delegate/EllipticCurveDelegate.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@
2323
*/
2424
public class EllipticCurveDelegate extends Delegate {
2525

26-
@Parameter(names = "-point_formats", description = "Sets the elliptic curve point formats, divided by a comma eg. UNCOMPRESSED,ANSIX962_COMPRESSED_PRIME", converter = PointFormatConverter.class)
26+
@Parameter(names = "-point_formats", description = "Sets the elliptic curve point formats, divided by a comma", converter = PointFormatConverter.class)
2727
private List<ECPointFormat> pointFormats = null;
28-
@Parameter(names = "-named_curve", description = "Named curves to be used, divided by a comma eg. SECT163K1,SECT193R2 ", converter = NamedCurveConverter.class)
28+
@Parameter(names = "-named_curve", description = "Named curves to be used, divided by a comma", converter = NamedCurveConverter.class)
2929
private List<NamedCurve> namedCurves = null;
3030

3131
public EllipticCurveDelegate() {

TLS-Core/src/main/java/de/rub/nds/tlsattacker/core/config/delegate/HeartbeatDelegate.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
*/
2020
public class HeartbeatDelegate extends Delegate {
2121

22-
@Parameter(names = "-heartbeat_mode", description = "Sets the heartbeat mode (PEER_ALLOWED_TO_SEND or PEER_NOT_ALLOWED_TO_SEND)", converter = HeartbeatModeConverter.class)
22+
@Parameter(names = "-heartbeat_mode", description = "Sets the heartbeat mode", converter = HeartbeatModeConverter.class)
2323
private HeartbeatMode heartbeatMode = null;
2424

2525
public HeartbeatDelegate() {

TLS-Core/src/main/java/de/rub/nds/tlsattacker/core/config/delegate/TransportHandlerDelegate.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
*/
2929
public class TransportHandlerDelegate extends Delegate {
3030

31-
@Parameter(names = "-transport_handler_type", description = "Transport Handler type (TCP, EAP_TLS, UDP)", converter = TransportHandlerTypeConverter.class)
31+
@Parameter(names = "-transport_handler_type", description = "Transport Handler type", converter = TransportHandlerTypeConverter.class)
3232
private TransportHandlerType transportHandlerType = null;
3333

3434
public TransportHandlerDelegate() {

TLS-Core/src/main/java/de/rub/nds/tlsattacker/core/config/delegate/WorkflowTypeDelegate.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,7 @@
1919
*/
2020
public class WorkflowTypeDelegate extends Delegate {
2121

22-
@Parameter(names = "-workflow_trace_type", description = "Type of the workflow trace"
23-
+ " (FULL,HANDSHAKE,HELLO,SHORT_HELLO,RESUMPTION,FULL_RESUMPTION,CLIENT_RENEGOTIATION,SERVER_RENEGOTIATION,HTTPS,SSL2_HELLO,SIMPLE_MITM_PROXY)", converter = WorkflowTraceTypeConverter.class)
22+
@Parameter(names = "-workflow_trace_type", description = "Type of the workflow trace", converter = WorkflowTraceTypeConverter.class)
2423
private WorkflowTraceType workflowTraceType = null;
2524

2625
public WorkflowTypeDelegate() {

0 commit comments

Comments
 (0)