Skip to content

Commit d6d17c8

Browse files
committed
correctly named setDefaultClientSupportedSignatureAlgorithms function
1 parent c1fbeae commit d6d17c8

File tree

1 file changed

+1
-6
lines changed
  • TLS-Core/src/main/java/de/rub/nds/tlsattacker/core/config

1 file changed

+1
-6
lines changed

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

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2343,17 +2343,12 @@ public void setDefaultClientSupportedSignatureAndHashAlgorithms(
23432343
this.defaultClientSupportedSignatureAndHashAlgorithms = defaultClientSupportedSignatureAndHashAlgorithms;
23442344
}
23452345

2346-
public final void setSupportedSignatureAndHashAlgorithms(
2346+
public final void setDefaultClientSupportedSignatureAndHashAlgorithms(
23472347
SignatureAndHashAlgorithm... supportedSignatureAndHashAlgorithms) {
23482348
this.defaultClientSupportedSignatureAndHashAlgorithms = new ArrayList(
23492349
Arrays.asList(supportedSignatureAndHashAlgorithms));
23502350
}
23512351

2352-
public final void setSupportedSignatureAndHashAlgorithms(
2353-
List<SignatureAndHashAlgorithm> supportedSignatureAndHashAlgorithms) {
2354-
this.defaultClientSupportedSignatureAndHashAlgorithms = supportedSignatureAndHashAlgorithms;
2355-
}
2356-
23572352
public List<ProtocolVersion> getSupportedVersions() {
23582353
return supportedVersions;
23592354
}

0 commit comments

Comments
 (0)