()
| 1402 | } |
| 1403 | |
| 1404 | func (c *TLSConfig) usingClientKey() bool { |
| 1405 | return len(c.Key) > 0 || len(c.KeyFile) > 0 || len(c.KeyRef) > 0 |
| 1406 | } |
| 1407 | |
| 1408 | func (c *TLSConfig) roundTripperSettings(secretManager SecretManager) (TLSRoundTripperSettings, error) { |
| 1409 | ca, err := toSecret(secretManager, Secret(c.CA), c.CAFile, c.CARef) |
no outgoing calls
no test coverage detected