From: Adam Langley Date: Sun, 10 Jan 2016 03:10:33 +0000 (-0800) Subject: doc: note GCM behaviour change in Go 1.6. X-Git-Tag: go1.6beta2~41 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=109d54a32d15b805769d4c05e78367f126a8d7f0;p=gostls13.git doc: note GCM behaviour change in Go 1.6. This change documents the behaviour change caused by https://go-review.googlesource.com/18480 in Go 1.6. Updates #13886 Change-Id: I2daa08a62775bbc209f0f4cbeae21b8184ce7609 Reviewed-on: https://go-review.googlesource.com/18481 Reviewed-by: Russ Cox --- diff --git a/doc/go1.6.html b/doc/go1.6.html index 7fdf17c0fa..c88271bdcc 100644 --- a/doc/go1.6.html +++ b/doc/go1.6.html @@ -514,6 +514,12 @@ now report io.EOF. +
  • +The crypto/cipher package now +overwrites the destination buffer in the event of a GCM decryption failure. +This is to allow the AESNI code to avoid using a temporary buffer. +
  • +
  • The crypto/tls package has a variety of minor changes.