-
Notifications
You must be signed in to change notification settings - Fork 4
/
certstore.go
48 lines (41 loc) · 872 Bytes
/
certstore.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
package main
import (
"crypto/tls"
"sync"
)
type OptimizedCertStore struct {
certs map[string]*tls.Certificate
locks map[string]*sync.Mutex
sync.Mutex
}
func NewOptimizedCertStore() *OptimizedCertStore {
return &OptimizedCertStore{
certs: map[string]*tls.Certificate{},
locks: map[string]*sync.Mutex{},
}
}
func (s *OptimizedCertStore) Fetch(host string, genCert func() (*tls.Certificate, error)) (*tls.Certificate, error) {
hostLock := s.hostLock(host)
hostLock.Lock()
defer hostLock.Unlock()
cert, ok := s.certs[host]
var err error
if !ok {
cert, err = genCert()
if err != nil {
return nil, err
}
s.certs[host] = cert
}
return cert, nil
}
func (s *OptimizedCertStore) hostLock(host string) *sync.Mutex {
s.Lock()
defer s.Unlock()
lock, ok := s.locks[host]
if !ok {
lock = &sync.Mutex{}
s.locks[host] = lock
}
return lock
}