protect

package
v0.17.5 Latest Latest
Warning

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

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

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

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

Jump to

Keyboard shortcuts

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