forked from hashicorp/vault
-
Notifications
You must be signed in to change notification settings - Fork 0
/
backend.go
44 lines (36 loc) · 810 Bytes
/
backend.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
package transit
import (
"github.com/hashicorp/vault/logical"
"github.com/hashicorp/vault/logical/framework"
)
func Factory(conf *logical.BackendConfig) (logical.Backend, error) {
b := Backend(conf)
be, err := b.Backend.Setup(conf)
if err != nil {
return nil, err
}
return be, nil
}
func Backend(conf *logical.BackendConfig) *backend {
var b backend
b.Backend = &framework.Backend{
Paths: []*framework.Path{
// Rotate/Config needs to come before Keys
// as the handler is greedy
b.pathConfig(),
b.pathRotate(),
b.pathRewrap(),
b.pathKeys(),
b.pathEncrypt(),
b.pathDecrypt(),
b.pathDatakey(),
},
Secrets: []*framework.Secret{},
}
b.lm = newLockManager(conf.System.CachingDisabled())
return &b
}
type backend struct {
*framework.Backend
lm *lockManager
}