RenewalInfoGetter is a type that can get ACME Renewal Information (ARI). Users of this package that wrap the ACMEIssuer or use any other issuer that supports ARI will need to implement this so that CertMagic can update ARI which happens outside the normal issuance flow and is thus not required by th
| 365 | // update ARI which happens outside the normal issuance flow and is thus |
| 366 | // not required by the Issuer interface (a type assertion is performed). |
| 367 | type RenewalInfoGetter interface { |
| 368 | GetRenewalInfo(context.Context, Certificate) (acme.RenewalInfo, error) |
| 369 | } |
| 370 | |
| 371 | // These internal rate limits are designed to prevent accidentally |
| 372 | // firehosing a CA's ACME endpoints. They are not intended to |
no outgoing calls
no test coverage detected
searching dependent graphs…