aboutsummaryrefslogtreecommitdiff
path: root/src/transport/gnunet-communicator-udp.c
diff options
context:
space:
mode:
authort3sserakt <t3ss@posteo.de>2022-10-25 09:59:23 +0200
committert3sserakt <t3ss@posteo.de>2022-10-25 10:02:01 +0200
commitb3a76100568e15660211945d931173f858156169 (patch)
tree54d89d7a0b743df81b5df095f60c3f13c016c69d /src/transport/gnunet-communicator-udp.c
parentc5f3eb40c97b2bcad7537607ca870a925aa9bed8 (diff)
parentfa48dbb242415a8dc06465863054b8d61c0e26bb (diff)
downloadgnunet-b3a76100568e15660211945d931173f858156169.tar.gz
gnunet-b3a76100568e15660211945d931173f858156169.zip
Merge branch 'master' of ssh://git.gnunet.org/gnunet
Diffstat (limited to 'src/transport/gnunet-communicator-udp.c')
-rw-r--r--src/transport/gnunet-communicator-udp.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/transport/gnunet-communicator-udp.c b/src/transport/gnunet-communicator-udp.c
index 9ca9fb90a..282902f1c 100644
--- a/src/transport/gnunet-communicator-udp.c
+++ b/src/transport/gnunet-communicator-udp.c
@@ -998,7 +998,7 @@ kce_destroy (struct KeyCacheEntry *kce)
998 * 998 *
999 * @param msec master secret for HMAC calculation 999 * @param msec master secret for HMAC calculation
1000 * @param serial number for the @a smac calculation 1000 * @param serial number for the @a smac calculation
1001 * @param kid[out] where to write the key ID 1001 * @param[out] kid where to write the key ID
1002 */ 1002 */
1003static void 1003static void
1004get_kid (const struct GNUNET_HashCode *msec, 1004get_kid (const struct GNUNET_HashCode *msec,
@@ -1130,8 +1130,8 @@ sender_destroy (struct SenderAddress *sender)
1130 * 1130 *
1131 * @param msec master secret for calculation 1131 * @param msec master secret for calculation
1132 * @param serial number for the @a smac calculation 1132 * @param serial number for the @a smac calculation
1133 * @param key[out] where to write the decryption key 1133 * @param[out] key where to write the decryption key
1134 * @param iv[out] where to write the IV 1134 * @param[out] iv where to write the IV
1135 */ 1135 */
1136static void 1136static void
1137get_iv_key (const struct GNUNET_HashCode *msec, 1137get_iv_key (const struct GNUNET_HashCode *msec,
@@ -1237,7 +1237,7 @@ check_timeouts (void *cls)
1237/** 1237/**
1238 * Calculate cmac from master in @a ss. 1238 * Calculate cmac from master in @a ss.
1239 * 1239 *
1240 * @param ss[in,out] data structure to complete 1240 * @param[in,out] ss data structure to complete
1241 */ 1241 */
1242static void 1242static void
1243calculate_cmac (struct SharedSecret *ss) 1243calculate_cmac (struct SharedSecret *ss)
@@ -1397,7 +1397,7 @@ setup_shared_secret_dec (const struct GNUNET_CRYPTO_EcdhePublicKey *ephemeral)
1397 * Setup shared secret for encryption. 1397 * Setup shared secret for encryption.
1398 * 1398 *
1399 * @param ephemeral ephemeral key we are sending to the other peer 1399 * @param ephemeral ephemeral key we are sending to the other peer
1400 * @param receiver[in,out] queue to initialize encryption key for 1400 * @param[in,out] receiver queue to initialize encryption key for
1401 * @return new shared secret 1401 * @return new shared secret
1402 */ 1402 */
1403static struct SharedSecret * 1403static struct SharedSecret *
@@ -2198,7 +2198,7 @@ setup_sender (const struct GNUNET_PeerIdentity *target,
2198/** 2198/**
2199 * Check signature from @a uc against @a ephemeral. 2199 * Check signature from @a uc against @a ephemeral.
2200 * 2200 *
2201 * @param ephermal key that is signed 2201 * @param ephemeral key that is signed
2202 * @param uc signature of claimant 2202 * @param uc signature of claimant
2203 * @return #GNUNET_OK if signature is valid 2203 * @return #GNUNET_OK if signature is valid
2204 */ 2204 */