forked from irungentoo/toxcore
-
Notifications
You must be signed in to change notification settings - Fork 291
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
cleanup: add timed_auth module for ping_ids
- Loading branch information
Showing
9 changed files
with
157 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
/* SPDX-License-Identifier: GPL-3.0-or-later | ||
* Copyright © 2019-2021 The TokTok team. | ||
*/ | ||
#include "timed_auth.h" | ||
|
||
#include <string.h> | ||
|
||
#include "ccompat.h" | ||
|
||
static void create_timed_auth_to_hash(const Mono_Time *mono_time, uint16_t timeout, bool previous, const uint8_t *data, | ||
uint16_t length, uint8_t *to_hash) | ||
{ | ||
const uint64_t t = (mono_time_get(mono_time) / timeout) - previous; | ||
memcpy(to_hash, &t, sizeof(t)); | ||
memcpy(to_hash + sizeof(t), data, length); | ||
} | ||
|
||
void generate_timed_auth(const Mono_Time *mono_time, uint16_t timeout, const uint8_t *key, | ||
const uint8_t *data, uint16_t length, uint8_t *timed_auth) | ||
{ | ||
VLA(uint8_t, to_hash, sizeof(uint64_t) + length); | ||
create_timed_auth_to_hash(mono_time, timeout, false, data, length, to_hash); | ||
crypto_hmac(timed_auth, key, to_hash, SIZEOF_VLA(to_hash)); | ||
} | ||
|
||
bool check_timed_auth(const Mono_Time *mono_time, uint16_t timeout, const uint8_t *key, const uint8_t *data, | ||
uint16_t length, const uint8_t *timed_auth) | ||
{ | ||
VLA(uint8_t, to_hash, sizeof(uint64_t) + length); | ||
|
||
for (uint8_t i = 0; i < 2; ++i) { | ||
create_timed_auth_to_hash(mono_time, timeout, i, data, length, to_hash); | ||
|
||
if (crypto_hmac_verify(timed_auth, key, to_hash, SIZEOF_VLA(to_hash))) { | ||
return true; | ||
} | ||
} | ||
|
||
return false; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/* SPDX-License-Identifier: GPL-3.0-or-later | ||
* Copyright © 2019-2021 The TokTok team. | ||
*/ | ||
#ifndef C_TOXCORE_TOXCORE_TIMED_AUTH_H | ||
#define C_TOXCORE_TOXCORE_TIMED_AUTH_H | ||
|
||
#include "crypto_core.h" | ||
#include "mono_time.h" | ||
|
||
#define TIMED_AUTH_SIZE CRYPTO_HMAC_SIZE | ||
|
||
/* Put timed authentication code of data in timed_auth. */ | ||
void generate_timed_auth(const Mono_Time *mono_time, uint16_t timeout, const uint8_t *key, | ||
const uint8_t *data, uint16_t length, uint8_t *timed_auth); | ||
|
||
/* Check timed_auth. This succeeds if timed_auth was generated by | ||
* generate_timed_auth at most timeout seconds ago, and fails if at least | ||
* `2*timeout` seconds ago. | ||
* | ||
* return true on success, false otherwise. | ||
*/ | ||
bool check_timed_auth(const Mono_Time *mono_time, uint16_t timeout, const uint8_t *key, const uint8_t *data, | ||
uint16_t length, const uint8_t *timed_auth); | ||
#endif |