Documentation ¶
Index ¶
- Constants
- type Crypter
- type Decrypter
- type Encrypter
- type Key
- type KeyArray
- type Map
- func (m Map) Decrypt(decrypter Decrypter) (map[Key]string, error)
- func (m Map) HasSecureValue() bool
- func (m Map) MarshalJSON() ([]byte, error)
- func (m Map) MarshalYAML() (interface{}, error)
- func (m *Map) UnmarshalJSON(b []byte) error
- func (m *Map) UnmarshalYAML(unmarshal func(interface{}) error) error
- type Value
Constants ¶
const SymmetricCrypterKeyBytes = 32
SymmetricCrypterKeyBytes is the required key size in bytes.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Crypter ¶
Crypter can both encrypt and decrypt values.
func NewPanicCrypter ¶
func NewPanicCrypter() Crypter
NewPanicCrypter returns a new config crypter that will panic if used.
func NewSymmetricCrypter ¶
NewSymmetricCrypter creates a crypter that encrypts and decrypts values using AES-256-GCM. The nonce is stored with the value itself as a pair of base64 values separated by a colon and a version tag `v1` is prepended.
func NewSymmetricCrypterFromPassphrase ¶
NewSymmetricCrypterFromPassphrase uses a passphrase and salt to generate a key, and then returns a crypter using it.
type Decrypter ¶
Decrypter decrypts encrypted ciphertext to its plaintext representation.
var NopDecrypter Decrypter = nopDecrypter{}
func NewBlindingDecrypter ¶
func NewBlindingDecrypter() Decrypter
NewBlindingDecrypter returns a Decrypter that instead of decrypting data, just returns "[secret]", it can be used when you want to display configuration information to a user but don't want to prompt for a password so secrets will not be decrypted.
type Key ¶
type Key struct {
// contains filtered or unexported fields
}
func MustMakeKey ¶
MustMakeKey constructs a config.Key for a given namespace and name. The namespace may not contain a `:`
func (Key) MarshalJSON ¶
func (Key) MarshalYAML ¶
func (*Key) UnmarshalJSON ¶
func (*Key) UnmarshalYAML ¶
type Map ¶
Map is a bag of config stored in the settings file.
func (Map) Decrypt ¶
Decrypt returns the configuration as a map from module member to decrypted value.
func (Map) HasSecureValue ¶
HasSecureValue returns true if the config map contains a secure (encrypted) value.
func (Map) MarshalJSON ¶
func (Map) MarshalYAML ¶
func (*Map) UnmarshalJSON ¶
func (*Map) UnmarshalYAML ¶
type Value ¶
type Value struct {
// contains filtered or unexported fields
}
Value is a single config value.