From: Brad Fitzpatrick Date: Sat, 23 Jan 2021 04:38:29 +0000 (-0800) Subject: doc/go1.16: add crypto/x509 memory optimization X-Git-Tag: go1.16rc1~27 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=b634f5d97a;p=gostls13.git 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 --- 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. +

+