protect

package
v0.18.0 Latest Latest
Warning

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

Go to latest
Published: Jun 23, 2026 License: Apache-2.0 Imports: 10 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func Decrypt added in v0.17.8

func Decrypt(key, ciphertext []byte) ([]byte, error)

func Encrypt added in v0.17.8

func Encrypt(key, plaintext []byte) ([]byte, error)

func GenerateKey added in v0.17.8

func GenerateKey() ([]byte, error)

Types

type KeyringProtector

type KeyringProtector struct {
	// contains filtered or unexported fields
}

func (*KeyringProtector) Decrypt

func (p *KeyringProtector) Decrypt(data []byte, name string) ([]byte, error)

Decrypt will decrypt provided data using the secret reference in "name" using the Secret Service API via D-Bus

func (*KeyringProtector) Encrypt

func (p *KeyringProtector) Encrypt(data []byte, name string) ([]byte, error)

Encrypt will encrypt provided data using the secret reference in "name" using the Secret Service API via D-Bus

type PlainProtector

type PlainProtector struct{}

func (*PlainProtector) Decrypt

func (p *PlainProtector) Decrypt(data []byte, name string) ([]byte, error)

Decrypt returns the data as-is on this platform

func (*PlainProtector) Encrypt

func (p *PlainProtector) Encrypt(data []byte, name string) ([]byte, error)

Encrypt returns the data as-is on this platform

type Protector

type Protector interface {
	Decrypt(data []byte, name string) ([]byte, error)
	Encrypt(data []byte, name string) ([]byte, error)
}

Protector is the interface for enctypting or decrypting data

func NewDefaultProtector

func NewDefaultProtector() Protector

Directories

Path Synopsis

Jump to

Keyboard shortcuts

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