From c8cc4a80c3617b3e0bc5ba6add2a9074346f7ec6 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Wed, 1 Mar 2023 11:27:45 -0500 Subject: [PATCH] tor-cell: tweak comments on EstablishIntro members. --- crates/tor-cell/src/relaycell/hs/est_intro.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/tor-cell/src/relaycell/hs/est_intro.rs b/crates/tor-cell/src/relaycell/hs/est_intro.rs index 6a99d1b65..7dc346a0d 100644 --- a/crates/tor-cell/src/relaycell/hs/est_intro.rs +++ b/crates/tor-cell/src/relaycell/hs/est_intro.rs @@ -166,10 +166,10 @@ pub struct EstablishIntro { /// This MAC binds the EstablishIntro message to a single circuit, and keeps /// it from being replayed. handshake_auth: CtByteArray, - /// A textual record of all the fields in the + /// A textual record of all the fields in the message that are covered by the MAC. #[educe(Debug(ignore))] mac_plaintext: Vec, - /// A signature using `auth_key` of all contents of the cell. + /// A signature using `auth_key` of all contents of the message. /// /// This signature proves possession of `auth_key` and thereby ensures that /// the request really comes from that key's holder.