-
Notifications
You must be signed in to change notification settings - Fork 468
ACME Certificate Revocation #625
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
Merged
Merged
Changes from 23 commits
Commits
Show all changes
27 commits
Select commit
Hold shift + click to select a range
d53bcaf
Add base logic for ACME revoke-cert
hslatman 84e7d46
Improve handling of ACME revocation
hslatman 0e56932
Add support for revocation using JWK
hslatman 16fe07d
Fix mockSignAuth
hslatman 8f7e700
Merge branch 'master' into hs/acme-revocation
hslatman 2b15230
Add Serial to Cert ID ACME table and lookup
hslatman 97165f1
Fix test mocking for CreateCertificate
hslatman 258efca
Improve revocation authorization
hslatman a4cfb66
Merge branch 'master' into hs/acme-revocation
hslatman 3151255
Merge branch 'master' into hs/acme-revocation
hslatman c7a9c13
Add tests for extractOrLookupJWK middleware
hslatman 023c64c
Merge branch 'master' into hs/acme-revocation
hslatman 42f56d6
Set golangci-lint version to v1.41.0 instead of latest
hslatman 29f9730
Satisfy golangci-lint
hslatman 2d50c96
Merge branch 'master' into hs/acme-revocation
hslatman c9cd876
Merge branch 'master' into hs/acme-revocation
hslatman ed295ca
Fix linting issue
hslatman 2d357da
Add tests for ACME revocation
hslatman 4d01cf8
Increase test code coverage
hslatman a7fbbc4
Add tests for GetCertificateBySerial
hslatman bae1d25
Improve tests for JWK vs. KID revoke auth flow
hslatman 06bb97c
Add logic for Account authorizations and improve tests
hslatman 47a8a3c
Add test case for ACME Revoke to Authority
hslatman 004fc05
Fix PR comments
hslatman 0524122
Remove authorization flow for different Account private keys
hslatman 3bc3957
Merge branch 'master' into hs/acme-revocation
hslatman 00539d0
Add changelog entry for ACME revocation
hslatman File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
should ValidateJWS also be part of validateMiddleware?
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.
Good point 😅. I have to admit
validatingMiddleware
is not that great of a name, as it does more than just that, but it works.Fixed in 004fc05.