aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKatie Hockman <katie@golang.org>2020-02-05 14:18:20 -0500
committerKatie Hockman <katie@golang.org>2020-02-05 21:53:13 +0000
commit7a36fa400286ca51192a7661a7ffbf9a39c396b3 (patch)
tree3b87c144179b34d0508385d73b8930c65bf9dfb1
parent921ceadd2997f2c0267455e13f909df044234805 (diff)
downloadgo-7a36fa400286ca51192a7661a7ffbf9a39c396b3.tar.gz
go-7a36fa400286ca51192a7661a7ffbf9a39c396b3.zip
crypto/x509: fix godoc for MarshalPKCS8PrivateKey
Fixes #36735 Change-Id: I93f005d78f4bfac773272995b165172461bae92f Reviewed-on: https://go-review.googlesource.com/c/go/+/217917 Run-TryBot: Katie Hockman <katie@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Filippo Valsorda <filippo@golang.org>
-rw-r--r--src/crypto/x509/pkcs8.go2
1 files changed, 1 insertions, 1 deletions
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.