From d5d8f610d9bdd219dbdcbb3861dbedcb83ce51fc Mon Sep 17 00:00:00 2001 From: Ximon Eighteen <3304436+ximon18@users.noreply.github.com> Date: Wed, 11 Sep 2024 10:28:08 +0200 Subject: [PATCH] We implement RFC 8945, so replace link to RFC 2845. --- src/tsig/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tsig/mod.rs b/src/tsig/mod.rs index 89e7dd8c..2710f969 100644 --- a/src/tsig/mod.rs +++ b/src/tsig/mod.rs @@ -1,7 +1,7 @@ //! Support for TSIG. //! //! This module provides high-level support for signing message exchanges with -//! TSIG as defined in [RFC 2845]. +//! TSIG as defined in [RFC 8945]. //! //! TSIG is intended to provide authentication for message exchanges. Messages //! are signed using a secret key shared between the two participants. The @@ -41,8 +41,8 @@ //! mostly for testing). //! //! [RFC 2104]: https://tools.ietf.org/html/rfc2104 -//! [RFC 2845]: https://tools.ietf.org/html/rfc2845 //! [RFC 4635]: https://tools.ietf.org/html/rfc4653 +//! [RFC 8945]: https://tools.ietf.org/html/rfc8945 //! [TSIG]: ../rdata/tsig/struct.Tsig.html //! [`Algorithm`]: enum.Algorithm.html //! [`Key`]: enum.Key.html