]> Cypherpunks.ru repositories - gostls13.git/commitdiff
crypto/tls: only store a single nonce for AES-GCM.
authorAdam Langley <agl@golang.org>
Wed, 12 Oct 2016 18:20:27 +0000 (11:20 -0700)
committerAdam Langley <agl@golang.org>
Mon, 17 Oct 2016 21:35:30 +0000 (21:35 +0000)
Although an AEAD, in general, can be used concurrently in both the seal
and open directions, TLS is easier. Since the transport keys are
different for different directions in TLS, an AEAD will only ever be
used in one direction. Thus we don't need separate buffers for seal and
open because they can never happen concurrently.

Also, fix the nonce size to twelve bytes since the fixed-prefix
construction for AEADs is superseded and will never be used for anything
else now.

Change-Id: Ibbf6c6b1da0e639f4ee0e3604410945dc7dcbb46
Reviewed-on: https://go-review.googlesource.com/30959
Run-TryBot: Adam Langley <agl@golang.org>
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
src/crypto/tls/cipher_suites.go

index c3cf5ac3f17458c97835be9140aad24dfd6bdd80..a3334f3c5bf1cf340c375e3be81c46994d433ddd 100644 (file)
@@ -161,11 +161,9 @@ type aead interface {
 // fixedNonceAEAD wraps an AEAD and prefixes a fixed portion of the nonce to
 // each call.
 type fixedNonceAEAD struct {
-       // sealNonce and openNonce are buffers where the larger nonce will be
-       // constructed. Since a seal and open operation may be running
-       // concurrently, there is a separate buffer for each.
-       sealNonce, openNonce []byte
-       aead                 cipher.AEAD
+       // nonce contains the fixed part of the nonce in the first four bytes.
+       nonce [12]byte
+       aead  cipher.AEAD
 }
 
 func (f *fixedNonceAEAD) NonceSize() int        { return 8 }
@@ -173,13 +171,13 @@ func (f *fixedNonceAEAD) Overhead() int         { return f.aead.Overhead() }
 func (f *fixedNonceAEAD) explicitNonceLen() int { return 8 }
 
 func (f *fixedNonceAEAD) Seal(out, nonce, plaintext, additionalData []byte) []byte {
-       copy(f.sealNonce[len(f.sealNonce)-8:], nonce)
-       return f.aead.Seal(out, f.sealNonce, plaintext, additionalData)
+       copy(f.nonce[4:], nonce)
+       return f.aead.Seal(out, f.nonce[:], plaintext, additionalData)
 }
 
 func (f *fixedNonceAEAD) Open(out, nonce, plaintext, additionalData []byte) ([]byte, error) {
-       copy(f.openNonce[len(f.openNonce)-8:], nonce)
-       return f.aead.Open(out, f.openNonce, plaintext, additionalData)
+       copy(f.nonce[4:], nonce)
+       return f.aead.Open(out, f.nonce[:], plaintext, additionalData)
 }
 
 // xoredNonceAEAD wraps an AEAD by XORing in a fixed pattern to the nonce
@@ -227,11 +225,9 @@ func aeadAESGCM(key, fixedNonce []byte) cipher.AEAD {
                panic(err)
        }
 
-       nonce1, nonce2 := make([]byte, 12), make([]byte, 12)
-       copy(nonce1, fixedNonce)
-       copy(nonce2, fixedNonce)
-
-       return &fixedNonceAEAD{nonce1, nonce2, aead}
+       ret := &fixedNonceAEAD{aead: aead}
+       copy(ret.nonce[:], fixedNonce)
+       return ret
 }
 
 func aeadChaCha20Poly1305(key, fixedNonce []byte) cipher.AEAD {