SiteMeta returns the path to the metadata file for domain that is associated with the certificate from the given issuer with the given issuerKey.
(issuerKey, domain string)
| 246 | // is associated with the certificate from the given issuer with |
| 247 | // the given issuerKey. |
| 248 | func (keys KeyBuilder) SiteMeta(issuerKey, domain string) string { |
| 249 | safeDomain := keys.Safe(domain) |
| 250 | return path.Join(keys.CertsSitePrefix(issuerKey, domain), safeDomain+".json") |
| 251 | } |
| 252 | |
| 253 | // OCSPStaple returns a key for the OCSP staple associated |
| 254 | // with the given certificate. If you have the PEM bundle |