open-vault/builtin/logical/transit/backend.go
2016-01-28 08:59:05 -05:00

47 lines
798 B
Go

package transit
import (
"github.com/hashicorp/vault/logical"
"github.com/hashicorp/vault/logical/framework"
)
func Factory(conf *logical.BackendConfig) (logical.Backend, error) {
b := Backend()
be, err := b.Backend.Setup(conf)
if err != nil {
return nil, err
}
return be, nil
}
func Backend() *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.policies = policyCache{
cache: map[string]*lockingPolicy{},
}
return &b
}
type backend struct {
*framework.Backend
policies policyCache
}