Files
kopia/vault/format.go

11 lines
346 B
Go

package vault
// Format describes the format of a Vault.
// Contents of this structure are serialized in plain text in the Vault storage.
type Format struct {
Version string `json:"version"`
UniqueID []byte `json:"uniqueID"`
KeyAlgorithm string `json:"keyAlgo"`
EncryptionAlgorithm string `json:"encryption"`
}