mirror of
https://github.com/golang/go
synced 2024-11-22 10:34:46 -07:00
crypto/cipher: update documentation for aead Open
The remaining capacity of dst should not overlap ciphertext. The previous wording was probably a copy paste mistake from aead Seal.
This commit is contained in:
parent
e126129d76
commit
fb54bc84c4
@ -39,7 +39,7 @@ type AEAD interface {
|
||||
// value passed to Seal.
|
||||
//
|
||||
// To reuse ciphertext's storage for the decrypted output, use ciphertext[:0]
|
||||
// as dst. Otherwise, the remaining capacity of dst must not overlap plaintext.
|
||||
// as dst. Otherwise, the remaining capacity of dst must not overlap ciphertext.
|
||||
//
|
||||
// Even if the function fails, the contents of dst, up to its capacity,
|
||||
// may be overwritten.
|
||||
|
Loading…
Reference in New Issue
Block a user