-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkeyrotation.go
79 lines (68 loc) · 1.31 KB
/
keyrotation.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
package tlsutil
import (
"crypto/rand"
"crypto/tls"
"io"
"time"
"github.com/renthraysk/group"
)
type KeyRotator struct {
cfg *tls.Config
duration time.Duration
keys [][32]byte
stop chan chan struct{}
}
func (r *KeyRotator) read(key []byte) (int, error) {
if r.cfg.Rand != nil {
return io.ReadFull(r.cfg.Rand, key)
}
return rand.Read(key)
}
func (r *KeyRotator) rotate() error {
var key [32]byte
if len(r.keys) < cap(r.keys) {
r.keys = r.keys[:len(r.keys)+1]
}
copy(r.keys[1:], r.keys[:])
_, err := r.read(key[:])
if err == nil {
r.keys[0] = key
}
r.cfg.SetSessionTicketKeys(r.keys)
return err
}
func (r *KeyRotator) Start() error {
timer := time.NewTicker(r.duration)
defer timer.Stop()
for {
select {
case <-timer.C:
r.rotate()
case q := <-r.stop:
close(q)
return nil
}
}
}
func (r *KeyRotator) Stop(err error) {
q := make(chan struct{})
r.stop <- q
<-q
}
// WithSessionTicketKeyRotation
func WithSessionTicketKeyRotation(g *group.Group, n int, d time.Duration) Option {
return func(cfg *tls.Config) error {
r := &KeyRotator{
cfg: cfg,
duration: d,
keys: make([][32]byte, 0, n),
stop: make(chan chan struct{}),
}
if err := r.rotate(); err != nil {
cfg.SessionTicketsDisabled = true
return nil
}
g.Add(r)
return nil
}
}