From: kovan Date: Tue, 3 Feb 2026 15:10:47 +0000 (+0100) Subject: crypto/tls: fix broken link in KeyLogWriter documentation X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=f8f87129646ca3821b3926e649c856a960d6bc9e;p=gostls13.git 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 Change-Id: I1a87cca839e503790170a6f3a48bef3b4c6bd624 Reviewed-on: https://go-review.googlesource.com/c/go/+/741444 Reviewed-by: Daniel McCarney Auto-Submit: Sean Liao Reviewed-by: Roland Shoemaker Reviewed-by: Michael Pratt LUCI-TryBot-Result: Go LUCI Reviewed-by: Sean Liao Auto-Submit: Michael Pratt --- 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