config

package
v4.1.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jul 15, 2026 License: AGPL-3.0 Imports: 10 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// ProviderAES is the AES-GCM encryption provider.
	ProviderAES = "aes"
	// ProviderSalsa20 is the Salsa20 encryption provider.
	ProviderSalsa20 = "salsa20"
)

Variables

This section is empty.

Functions

func NewEncryptorDecryptor

func NewEncryptorDecryptor(
	cfg *Config,
	tracerProvider tracing.TracerProvider,
	logger logging.Logger,
	key []byte,
) (encryption.EncryptorDecryptor, error)

NewEncryptorDecryptor provides an EncryptorDecryptor based on the configured provider.

func RegisterEncryptorDecryptor

func RegisterEncryptorDecryptor(i do.Injector)

RegisterEncryptorDecryptor registers an encryption.EncryptorDecryptor with the injector.

Consumers must provide an encryption.MasterKey into the container (e.g. via do.ProvideValue(i, encryption.MasterKey(keyBytes))). The master key is resolved as the named encryption.MasterKey type rather than a bare []byte so it cannot collide with an unrelated []byte value registered in the same container.

Types

type Config

type Config struct {
	Provider string `env:"PROVIDER" json:"provider" yaml:"provider"`
}

Config is the configuration for the encryption provider.

func (*Config) ValidateWithContext

func (cfg *Config) ValidateWithContext(ctx context.Context) error

ValidateWithContext validates a Config struct.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL