From: Dan Peterson Date: Tue, 12 Apr 2016 16:12:54 +0000 (-0300) Subject: crypto/x509: remove broken link in ParsePKCS8PrivateKey documentation X-Git-Tag: go1.7beta1~737 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=37af06360039c96be707526596557a33885c3ad0;p=gostls13.git crypto/x509: remove broken link in ParsePKCS8PrivateKey documentation Fixes #14776 Change-Id: I55423ac643f18542b9fd1386ed98dec47fb678aa Reviewed-on: https://go-review.googlesource.com/21890 Reviewed-by: Brad Fitzpatrick --- diff --git a/src/crypto/x509/pkcs8.go b/src/crypto/x509/pkcs8.go index ba19989cba..6e56752c0e 100644 --- a/src/crypto/x509/pkcs8.go +++ b/src/crypto/x509/pkcs8.go @@ -21,8 +21,8 @@ type pkcs8 struct { // optional attributes omitted. } -// ParsePKCS8PrivateKey parses an unencrypted, PKCS#8 private key. See -// http://www.rsa.com/rsalabs/node.asp?id=2130 and RFC5208. +// ParsePKCS8PrivateKey parses an unencrypted, PKCS#8 private key. +// See RFC 5208. func ParsePKCS8PrivateKey(der []byte) (key interface{}, err error) { var privKey pkcs8 if _, err := asn1.Unmarshal(der, &privKey); err != nil {