Encrypt takes a ciphertext, a key and additional data and returns the ciphertext encrypted with the key, using the additional data for authentication
(ciphertext string, key []byte, additionalData string)
| 107 | // Encrypt takes a ciphertext, a key and additional data and returns the ciphertext encrypted with the key, using |
| 108 | // the additional data for authentication |
| 109 | Decrypt(ciphertext string, key []byte, additionalData string) (plaintext interface{}, err error) |
| 110 | } |
| 111 | |
| 112 | // Comment represents a comment in the sops tree for the file formats that actually support them. |
no outgoing calls