-
-
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
newOrder: support notAfter certificate validity #806
Comments
Sure, sounds good. At least |
I'm currently taking a stab at implementing this and I'm struggling to find a portable way of generating the RFC3339 timestamp required as Depending on the solution to the portable timestamp generation, I can think of the following configuration options:
|
I think having it defined in days or hours would be the way to go. Way less parsing necessary and I don't really see the point to have validity to an exact minute. Personally I think having just days defined should be more than good enough. |
Would be quite nice to have an error if the selected time span isn't possible (e.g. being higher than max age by the CA, or something weird like being <= 0) |
The ACME protocol supports requesting certificates with a certain validity as optional
notAfter
field in the call to thenewOrder
resource: https://tools.ietf.org/html/rfc8555#section-7.4. If unspecified, the issuing CA will decide on the validity.I've been playing around with a private PKI (step-ca) and I'd like to issue shorter certificates if the clients choose to.
Do you think we should add support for this?
The text was updated successfully, but these errors were encountered: