Documentation ¶
Index ¶
- type MasterKey
- func (key *MasterKey) Decrypt() ([]byte, error)
- func (key *MasterKey) Encrypt(dataKey []byte) error
- func (key *MasterKey) EncryptIfNeeded(dataKey []byte) error
- func (key *MasterKey) EncryptedDataKey() []byte
- func (key *MasterKey) NeedsRotation() bool
- func (key *MasterKey) SetEncryptedDataKey(enc []byte)
- func (key MasterKey) ToMap() map[string]interface{}
- func (key *MasterKey) ToString() string
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type MasterKey ¶
type MasterKey struct { EncryptedKey string KeyName string EnginePath string VaultAddress string CreationDate time.Time }
MasterKey is a Vault Transit backend path used to encrypt and decrypt sops' data key.
func NewMasterKey ¶
NewMasterKey creates a new MasterKey from a vault address, transit backend path and a key name and setting the creation date to the current date
func NewMasterKeyFromURI ¶
NewMasterKeyFromURI obtains the vaultAddress the transit backend path and the key name from the full URI of the key
func NewMasterKeysFromURIs ¶
NewMasterKeysFromURIs gets lots of keys from lots of URIs
func (*MasterKey) Decrypt ¶
Decrypt decrypts the EncryptedKey field with Vault Transit and returns the result.
func (*MasterKey) Encrypt ¶
Encrypt takes a sops data key, encrypts it with Vault Transit and stores the result in the EncryptedKey field
func (*MasterKey) EncryptIfNeeded ¶
EncryptIfNeeded encrypts the provided sops' data key and encrypts it if it hasn't been encrypted yet
func (*MasterKey) EncryptedDataKey ¶
EncryptedDataKey returns the encrypted data key this master key holds
func (*MasterKey) NeedsRotation ¶
NeedsRotation returns whether the data key needs to be rotated or not. This is simply copied from GCPKMS TODO: handle key rotation on vault side
func (*MasterKey) SetEncryptedDataKey ¶
SetEncryptedDataKey sets the encrypted data key for this master key