(ctx context.Context, label string)
| 22 | // KeyVault provides access to private keys. |
| 23 | type KeyVault interface { |
| 24 | Key(ctx context.Context, label string) ([]byte, error) |
| 25 | ServerCertificate(ctx context.Context, label string) (tls.Certificate, error) |
| 26 | ClientCertificate(ctx context.Context, label string) (tls.Certificate, error) |
| 27 | } |
no outgoing calls