Versions in this module Expand all Collapse all v0 v0.5.0 May 28, 2015 Changes in this version + func ParseDecryptionTag(keystore string, s ...string) (string, error) + type DecryptionTag struct + AuthData []byte + CipherText []byte + InitVector []byte + KeyName string + func ParseEncrytionTag(keystore string, s ...string) (DecryptionTag, error) + func (dt *DecryptionTag) DecryptTag(keystore string) ([]byte, error) + type EncryptionTag struct + AuthData []byte + KeyName string + Plaintext []byte + func (et *EncryptionTag) EncryptTag(keystore string, iv []byte) ([]byte, error) v0.4.0 Feb 23, 2015 Changes in this version + func CreateKey() []byte + func DecryptTags(content []byte, keyroot string) ([]byte, error) + func EncryptTags(content []byte, keyname, keyroot string, rotate bool) ([]byte, error)