SitePrivateKey returns the path to the private key file for domain that is associated with the certificate from the given issuer with the given issuerKey.
(issuerKey, domain string)
| 238 | // that is associated with the certificate from the given issuer with |
| 239 | // the given issuerKey. |
| 240 | func (keys KeyBuilder) SitePrivateKey(issuerKey, domain string) string { |
| 241 | safeDomain := keys.Safe(domain) |
| 242 | return path.Join(keys.CertsSitePrefix(issuerKey, domain), safeDomain+".key") |
| 243 | } |
| 244 | |
| 245 | // SiteMeta returns the path to the metadata file for domain that |
| 246 | // is associated with the certificate from the given issuer with |