2020-01-09 18:41:13 -08:00
|
|
|
package kms
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"strings"
|
|
|
|
|
|
|
|
"github.com/pkg/errors"
|
|
|
|
"github.com/smallstep/certificates/kms/apiv1"
|
2020-05-15 11:32:12 -07:00
|
|
|
|
2020-06-12 14:55:35 -07:00
|
|
|
// Enable default implementation
|
2020-05-15 11:32:12 -07:00
|
|
|
_ "github.com/smallstep/certificates/kms/softkms"
|
2020-01-09 18:41:13 -08:00
|
|
|
)
|
|
|
|
|
|
|
|
// KeyManager is the interface implemented by all the KMS.
|
2020-05-11 18:47:22 -07:00
|
|
|
type KeyManager = apiv1.KeyManager
|
2020-01-09 18:41:13 -08:00
|
|
|
|
2020-05-11 18:47:22 -07:00
|
|
|
// CertificateManager is the interface implemented by the KMS that can load and
|
|
|
|
// store x509.Certificates.
|
|
|
|
type CertificateManager = apiv1.CertificateManager
|
2020-05-07 18:22:09 -07:00
|
|
|
|
2020-01-09 18:41:13 -08:00
|
|
|
// New initializes a new KMS from the given type.
|
|
|
|
func New(ctx context.Context, opts apiv1.Options) (KeyManager, error) {
|
|
|
|
if err := opts.Validate(); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2020-05-11 18:47:22 -07:00
|
|
|
t := apiv1.Type(strings.ToLower(opts.Type))
|
|
|
|
if t == apiv1.DefaultKMS {
|
|
|
|
t = apiv1.SoftKMS
|
|
|
|
}
|
|
|
|
|
|
|
|
fn, ok := apiv1.LoadKeyManagerNewFunc(t)
|
|
|
|
if !ok {
|
2020-05-15 11:32:12 -07:00
|
|
|
return nil, errors.Errorf("unsupported kms type '%s'", t)
|
2020-01-09 18:41:13 -08:00
|
|
|
}
|
2020-05-11 18:47:22 -07:00
|
|
|
return fn(ctx, opts)
|
2020-01-09 18:41:13 -08:00
|
|
|
}
|