Decrypt appends the unencrypted bytes corresponding to the given ciphertext to a given slice. Must not clobber the input slice. If IsAuthenticated() == true, Decrypt will perform authenticity check before decrypting.
(cipherText gather.Bytes, contentID []byte, output *gather.WriteBuffer)
| 27 | // Must not clobber the input slice. If IsAuthenticated() == true, Decrypt will perform |
| 28 | // authenticity check before decrypting. |
| 29 | Decrypt(cipherText gather.Bytes, contentID []byte, output *gather.WriteBuffer) error |
| 30 | |
| 31 | // Overhead is the number of bytes of overhead added by Encrypt() |
| 32 | Overhead() int |
no outgoing calls