aboutsummaryrefslogtreecommitdiff
path: root/src/crypto
diff options
context:
space:
mode:
authorkovan <xaum.io@gmail.com>2026-02-03 16:10:47 +0100
committerGopher Robot <gobot@golang.org>2026-02-06 11:26:08 -0800
commitf8f87129646ca3821b3926e649c856a960d6bc9e (patch)
tree2b870382f48e0ae2688bd023acc306704d820c13 /src/crypto
parent491da55fdba438284656c370f6d2f3e0b0971a83 (diff)
downloadgo-f8f87129646ca3821b3926e649c856a960d6bc9e.tar.xz
crypto/tls: fix broken link in KeyLogWriter documentation
The Mozilla developer documentation link for the NSS key log format has been broken since early 2022. Update the documentation to point to the IETF TLS working group draft which is currently in the RFC publication queue. Fixes #63331 Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> Change-Id: I1a87cca839e503790170a6f3a48bef3b4c6bd624 Reviewed-on: https://go-review.googlesource.com/c/go/+/741444 Reviewed-by: Daniel McCarney <daniel@binaryparadox.net> Auto-Submit: Sean Liao <sean@liao.dev> Reviewed-by: Roland Shoemaker <roland@golang.org> Reviewed-by: Michael Pratt <mpratt@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Sean Liao <sean@liao.dev> Auto-Submit: Michael Pratt <mpratt@google.com>
Diffstat (limited to 'src/crypto')
-rw-r--r--src/crypto/tls/common.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/crypto/tls/common.go b/src/crypto/tls/common.go
index f6926f1aa5..ebaeb385aa 100644
--- a/src/crypto/tls/common.go
+++ b/src/crypto/tls/common.go
@@ -825,7 +825,7 @@ type Config struct {
// KeyLogWriter optionally specifies a destination for TLS master secrets
// in NSS key log format that can be used to allow external programs
// such as Wireshark to decrypt TLS connections.
- // See https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS/Key_Log_Format.
+ // See https://datatracker.ietf.org/doc/draft-ietf-tls-keylogfile/.
// Use of KeyLogWriter compromises security and should only be
// used for debugging.
KeyLogWriter io.Writer