From 44f467bec3353e2bf964c86a4fcd4eb0d8e920f5 Mon Sep 17 00:00:00 2001 From: Alicja Kario Date: Mon, 25 Nov 2024 19:02:50 +0100 Subject: [PATCH 1/2] rsa-sigs-on-certificate-verify: fix recognition of -n option --- scripts/test-rsa-sigs-on-certificate-verify.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/test-rsa-sigs-on-certificate-verify.py b/scripts/test-rsa-sigs-on-certificate-verify.py index d7252e2d2..c4256f534 100644 --- a/scripts/test-rsa-sigs-on-certificate-verify.py +++ b/scripts/test-rsa-sigs-on-certificate-verify.py @@ -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': From 2611c9df9ed8eba4b04eec0670dee3640e4a7562 Mon Sep 17 00:00:00 2001 From: Alicja Kario Date: Mon, 25 Nov 2024 19:41:32 +0100 Subject: [PATCH 2/2] certificate-request: add handling of -n option --- scripts/test-certificate-request.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/test-certificate-request.py b/scripts/test-certificate-request.py index 81eb8749f..9ea68f611 100644 --- a/scripts/test-certificate-request.py +++ b/scripts/test-certificate-request.py @@ -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