config

package
v2.0.2 Latest Latest
Warning

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

Go to latest
Published: Mar 23, 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

View Source
var (
	// Providers provides encryption construction for dependency injection.
	Providers = wire.NewSet(
		ProvideEncryptorDecryptor,
	)
)

Functions

func ProvideEncryptorDecryptor

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

ProvideEncryptorDecryptor provides an EncryptorDecryptor based on the configured provider.

func RegisterEncryptorDecryptor

func RegisterEncryptorDecryptor(i do.Injector)

RegisterEncryptorDecryptor registers an encryption.EncryptorDecryptor with the injector.

Types

type Config

type Config struct {
	Provider string `env:"PROVIDER" json:"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