CertCache provides a thread-safe cache for parsed client certificates
| 15 | |
| 16 | // CertCache provides a thread-safe cache for parsed client certificates |
| 17 | type CertCache struct { |
| 18 | mu sync.RWMutex |
| 19 | cache map[string]*CertCacheEntry |
| 20 | } |
| 21 | |
| 22 | var ( |
| 23 | certCacheInstance *CertCache |
nothing calls this directly
no outgoing calls
no test coverage detected