1
0
mirror of https://github.com/golang/go synced 2024-09-29 00:34:30 -06:00

crypto/x509: add comment to blank imports done for init side effects

To educate future readers.

Change-Id: I1ef79178b6997cc96ca066c91b9fec822478674b
Reviewed-on: https://go-review.googlesource.com/c/go/+/266301
Reviewed-by: Katie Hockman <katie@golang.org>
Reviewed-by: Emmanuel Odeke <emmanuel@orijtech.com>
Run-TryBot: Katie Hockman <katie@golang.org>
Trust: Emmanuel Odeke <emmanuel@orijtech.com>
This commit is contained in:
Brad Fitzpatrick 2020-10-29 13:47:12 -07:00 committed by Emmanuel Odeke
parent 9a1596689e
commit fe70a3a0fd

View File

@ -28,6 +28,8 @@ import (
"time"
"unicode"
// Explicitly import these for their crypto.RegisterHash init side-effects.
// Keep these as blank imports, even if they're imported above.
_ "crypto/sha1"
_ "crypto/sha256"
_ "crypto/sha512"