aboutsummaryrefslogtreecommitdiff
path: root/src/transport/gnunet-communicator-udp.c
diff options
context:
space:
mode:
authorMartin Schanzenbach <schanzen@gnunet.org>2022-10-18 10:04:57 +0900
committerMartin Schanzenbach <schanzen@gnunet.org>2022-10-18 10:04:57 +0900
commitc9562b8cf7a29f4ec2457cb9d9d4530c24225da1 (patch)
treefb7d0296af5537ddda7e772a46e959c8ed64fbac /src/transport/gnunet-communicator-udp.c
parent9173da4f8c1f4b50ccd9d61f6fa138904740ecfa (diff)
parentd748b0c920b0581ca65962f34d1f2e94c9a89926 (diff)
downloadgnunet-c9562b8cf7a29f4ec2457cb9d9d4530c24225da1.tar.gz
gnunet-c9562b8cf7a29f4ec2457cb9d9d4530c24225da1.zip
-fix conflict
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 07beeac38..2748a6594 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 */