From: Katie Hockman Date: Wed, 5 Feb 2020 19:18:20 +0000 (-0500) Subject: [release-branch.go1.14] crypto/x509: fix godoc for MarshalPKCS8PrivateKey X-Git-Tag: go1.14~12 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=3f0cdedfdd4fe7531c49a29abb1824939d84d3bb;p=gostls13.git [release-branch.go1.14] crypto/x509: fix godoc for MarshalPKCS8PrivateKey Updates #36735 Fixes #37068 Change-Id: I93f005d78f4bfac773272995b165172461bae92f Reviewed-on: https://go-review.googlesource.com/c/go/+/217917 Run-TryBot: Katie Hockman TryBot-Result: Gobot Gobot Reviewed-by: Filippo Valsorda (cherry picked from commit 7a36fa400286ca51192a7661a7ffbf9a39c396b3) Reviewed-on: https://go-review.googlesource.com/c/go/+/217999 --- diff --git a/src/crypto/x509/pkcs8.go b/src/crypto/x509/pkcs8.go index d37fc9e1b3..ec4ab10c57 100644 --- a/src/crypto/x509/pkcs8.go +++ b/src/crypto/x509/pkcs8.go @@ -79,7 +79,7 @@ func ParsePKCS8PrivateKey(der []byte) (key interface{}, err error) { } } -// MarshalPKCS8PrivateKey converts an RSA private key to PKCS#8, ASN.1 DER form. +// MarshalPKCS8PrivateKey converts a private key to PKCS#8, ASN.1 DER form. // // The following key types are currently supported: *rsa.PrivateKey, *ecdsa.PrivateKey // and ed25519.PrivateKey. Unsupported key types result in an error.