You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
boundary/plugins/kms/builtin.go

18 lines
404 B

// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: BUSL-1.1
package kms_plugin_assets
import (
"github.com/hashicorp/go-kms-wrapping/v2/aead"
"github.com/hashicorp/go-secure-stdlib/pluginutil/v2"
)
func BuiltinKmsPlugins() map[string]pluginutil.InmemCreationFunc {
return map[string]pluginutil.InmemCreationFunc{
"aead": func() (any, error) {
return aead.NewWrapper(), nil
},
}
}