-
Notifications
You must be signed in to change notification settings - Fork 39
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
Adding from PEM stack for CA chain functionality #242
Conversation
Can you write a test for |
f930dc1
to
638376c
Compare
@tylerfanelli @larrydewey Can you guys review |
Seems there's a failing test with |
Turin certs are a different size from previous generation certificates. Adding those certs to our cert cache. When requesting certificates from the KDS, those certificates will come as a pem stack. Adding the ability to generate a ca Chain from a pem stack, that way cert size is not a concern. Also adding testing for this new functionality. Signed-off-by: DGonzalezVillal <[email protected]>
638376c
to
c4e9b81
Compare
@tylerfanelli @larrydewey Can you guys review |
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.
Slight formatting suggestion, but not a blocker.
@@ -8,4 +8,7 @@ pub mod genoa; | |||
/// Milan generation. | |||
pub mod milan; | |||
|
|||
/// TURIN generation |
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.
/// TURIN generation | |
/// Turin generation. |
Adding the ability to create a CA chain from a PEM stack. Will be useful when getting the certificates from the KDS, since that is how those certificates are provided. Will also fix the issue of different cert sizes for different generations.