-
Notifications
You must be signed in to change notification settings - Fork 717
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
test: additional test certs #4378
Conversation
This commit fixes a previous issue with the signature in the rsae-pss certs. It also adds more hash digest coverage.
@@ -168,6 +169,9 @@ then | |||
cert-gen ec ecdsa 384 SHA256 ec_ecdsa_p384_sha256 | |||
cert-gen ec ecdsa 384 SHA384 ec_ecdsa_p384_sha384 | |||
cert-gen ec ecdsa 521 SHA384 ec_ecdsa_p521_sha384 | |||
cert-gen ec ecdsa 521 SHA512 ec_ecdsa_p521_sha512 | |||
cert-gen rsa pkcsv1.5 2048 SHA1 rsae_pkcs_2048_sha1 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Kind of a nit, we usually specify which pkcs padding is used in the filename. Otherwise pkcs doesn't really have much meaning on its own.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Mostly the purpose of this is to iterate over the different NID's so pkvs vs pss is enough for my test purposes, but it sounds like a nice future item to add support for different pkcs padding choices.
- fix intermediate CA typo
Description of changes:
signature_options
when generating the intermediate certTesting:
Rebased my in-development unit tests on top of this as well as manual inspection using the
openssl x509
utility.By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.