IntermediateCertificateChain returns the CA's intermediate certificate chain.
()
| 200 | // IntermediateCertificateChain returns the CA's intermediate |
| 201 | // certificate chain. |
| 202 | func (ca CA) IntermediateCertificateChain() []*x509.Certificate { |
| 203 | ca.mu.RLock() |
| 204 | defer ca.mu.RUnlock() |
| 205 | return ca.interChain |
| 206 | } |
| 207 | |
| 208 | // IntermediateKey returns the CA's intermediate private key. |
| 209 | func (ca CA) IntermediateKey() crypto.Signer { |
no outgoing calls
no test coverage detected