From 08e88f637e2f35442050bd367e860c6f80e51664 Mon Sep 17 00:00:00 2001 From: Filippo Valsorda Date: Fri, 25 May 2018 18:20:36 -0400 Subject: [PATCH] [dev.boringcrypto] crypto/tls: restore AES-GCM priority when BoringCrypto is enabled This patch used to be in crypto/internal/cipherhw.AESGCMSupport which was removed from the tree. It was meant and documented to affect only crypto/tls, so move the logic there. Change-Id: I36ed4f08a5fe2abaab18907910899ae0297d1611 Reviewed-on: https://go-review.googlesource.com/114816 Run-TryBot: Filippo Valsorda TryBot-Result: Gobot Gobot Reviewed-by: Adam Langley --- common.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/common.go b/common.go index c47c432..897a8e0 100644 --- a/common.go +++ b/common.go @@ -7,6 +7,7 @@ package tls import ( "container/list" "crypto" + "crypto/internal/boring" "crypto/rand" "crypto/sha512" "crypto/x509" @@ -945,7 +946,8 @@ func initDefaultCipherSuites() { hasGCMAsm := hasGCMAsmAMD64 || hasGCMAsmARM64 || hasGCMAsmS390X - if hasGCMAsm { + if hasGCMAsm || boring.Enabled { + // If BoringCrypto is enabled, always prioritize AES-GCM. // If AES-GCM hardware is provided then prioritise AES-GCM // cipher suites. topCipherSuites = []uint16{