]> Cypherpunks repositories - gostls13.git/commit
crypto/x509: add signature verification to CreateCertificate
authorRoland Shoemaker <rolandshoemaker@gmail.com>
Mon, 5 Oct 2020 20:18:20 +0000 (13:18 -0700)
committerRoland Shoemaker <roland@golang.org>
Wed, 14 Oct 2020 20:17:49 +0000 (20:17 +0000)
commit2ec71e57323c4801bb70a8dab687991e551229f4
treed346de26fec14c92bc5667a15d6fa992c3eadbf0
parentfbf62beb4ed00bd4f93cf64316757be065c4249b
crypto/x509: add signature verification to CreateCertificate

This changes checks the signature generated during CreateCertificate
and returns an error if the verification fails. A benchmark is also
added. For RSA keys the delta looks to be insignificant, but for
ECDSA keys it introduces a much larger delta which is not ideal.

name          old time/op  new time/op   delta
RSA_2048-8    1.38ms ± 6%   1.41ms ± 2%      ~     (p=0.182 n=10)
ECDSA_P256-8  42.6µs ± 4%  116.8µs ± 4%  +174.00%  (p=0.000 n=1

Fixes #40458

Change-Id: I22827795bb9bb6868b4fa47391927db1d3bc19a1
Reviewed-on: https://go-review.googlesource.com/c/go/+/259697
Run-TryBot: Roland Shoemaker <roland@golang.org>
TryBot-Result: Go Bot <gobot@golang.org>
Reviewed-by: Filippo Valsorda <filippo@golang.org>
Trust: Emmanuel Odeke <emm.odeke@gmail.com>
Trust: Roland Shoemaker <roland@golang.org>
doc/go1.16.html
src/crypto/x509/x509.go
src/crypto/x509/x509_test.go