-
Notifications
You must be signed in to change notification settings - Fork 0
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
Finalize UZI PoC Q4 for YubiSign project #59
base: main
Are you sure you want to change the base?
Conversation
This reverts commit cbcec30.
Before this pull request can be ready for review, these should be merged first: |
Key reset on RSA page
Check PKCS library before starting up the application
Co-authored-by: Rick Lambrechts <[email protected]>
Co-authored-by: Rick Lambrechts <[email protected]>
Co-authored-by: Rick Lambrechts <[email protected]>
Hi @ricklambrechts, find the applied feedback in this PR #60 |
Apply feedback from Rick
* work * add variable to .env.example * Update docs/local_setup.md Co-authored-by: Rick Lambrechts <[email protected]> --------- Co-authored-by: Rick Lambrechts <[email protected]>
san = x509.GeneralNames( | ||
[ | ||
x509.GeneralName("dns_name", "example.com"), | ||
x509.GeneralName("dns_name", "www.example.com"), | ||
] | ||
) | ||
extensions = [ | ||
csr_module.CRIAttribute( | ||
{ | ||
"type": "extension_request", | ||
"values": [ | ||
x509.Extensions( | ||
[ | ||
x509.Extension( | ||
{ | ||
"extn_id": "subject_alt_name", | ||
"critical": False, | ||
"extn_value": san, | ||
} | ||
) | ||
] | ||
) | ||
], | ||
} | ||
) | ||
] |
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.
This should normally not be needed for our CSR, but is needed for the implementation in ACME CA Server.
) | ||
headers = { | ||
"Content-Type": "application/jose+json", | ||
"X-Acme-Jwt": jwt_token, |
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.
Normally the JWT is already sent as a challenge and we should not need to update the finalize request.
Need to discuss #59 (comment) and #59 (comment) with @meneerhenk to discuss what we want to do with it. These changes conflict with changing between the ACME CA Server implementation and the Boulder implementation. |
This pull request finalizes the Q4 PoC of the Yubisign application. This includes new features and refactoring. Note: this application is not suitable for any production environment.