From b634f5d97a6e65f19057c00ed2095a1a872c7fa8 Mon Sep 17 00:00:00 2001 From: Brad Fitzpatrick Date: Fri, 22 Jan 2021 20:38:29 -0800 Subject: [PATCH] doc/go1.16: add crypto/x509 memory optimization Change-Id: I0c61b0e0d1430f66e3f7dbf07817264258a1c15a Reviewed-on: https://go-review.googlesource.com/c/go/+/285682 Reviewed-by: Ian Lance Taylor Trust: Brad Fitzpatrick --- doc/go1.16.html | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/doc/go1.16.html b/doc/go1.16.html index 9c8919e5c2..78f69f6c7d 100644 --- a/doc/go1.16.html +++ b/doc/go1.16.html @@ -623,6 +623,14 @@ func TestFoo(t *testing.T) { method allows accessing the Err field through the errors package functions.

+ +

+ On Unix systems, the crypto/x509 package is now more + efficient in how it stores its copy of the system cert pool. + Programs that use only a small number of roots will use around a + half megabyte less memory. +

+ -- 2.50.0