From e64004a0a40d7a571efeea801ec0562b03cfd886 Mon Sep 17 00:00:00 2001 From: mamoniot Date: Thu, 15 Dec 2022 12:02:29 -0500 Subject: [PATCH] added comment --- zssp/src/zssp.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zssp/src/zssp.rs b/zssp/src/zssp.rs index b36aeb333..db2f3bfbd 100644 --- a/zssp/src/zssp.rs +++ b/zssp/src/zssp.rs @@ -1183,7 +1183,7 @@ fn send_ephemeral_offer( header_check_cipher: Option<&Aes>, // None to use one based on the recipient's public key for initial contact mtu: usize, current_time: i64, - ret_ephemeral_offer: &mut Option + ret_ephemeral_offer: &mut Option//We want to prevent copying the EphemeralOffer up the stack because it's very big. ret_ephemeral_offer will be overwritten with the returned EphemeralOffer when the call completes. ) -> Result<(), Error> { // Generate a NIST P-384 pair. let alice_e_keypair = P384KeyPair::generate();