Skip to content

Commit

Permalink
Merge pull request tlsfuzzer#978 from tlsfuzzer/rsa-sigs-fix
Browse files Browse the repository at this point in the history
rsa-sigs-on-certificate-verify: fix recognition of -n option
  • Loading branch information
tomato42 authored Nov 26, 2024
2 parents 9a36860 + 2611c9d commit 999684d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/test-certificate-request.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ def main():
ClientCertificateType.ecdsa_sign]

argv = sys.argv[1:]
opts, args = getopt.getopt(argv, "h:p:e:x:X:s:k:c:T:dM", ["help", "ems"])
opts, args = getopt.getopt(argv, "h:p:e:x:X:s:k:c:T:dMn:", ["help", "ems"])
for opt, arg in opts:
if opt == '-h':
hostname = arg
Expand Down
2 changes: 1 addition & 1 deletion scripts/test-rsa-sigs-on-certificate-verify.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def main():
ems = False

argv = sys.argv[1:]
opts, argv = getopt.getopt(argv, "h:p:e:x:X:k:c:dM", ["help", "ems"])
opts, argv = getopt.getopt(argv, "h:p:e:x:X:k:c:dMn:", ["help", "ems"])

for opt, arg in opts:
if opt == '-k':
Expand Down

0 comments on commit 999684d

Please sign in to comment.