blob: f6e84c313031f2fead3682054e714f7bfeb44ad9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
/* SPDX-License-Identifier: GPL-3.0-or-later
* Copyright © 2022 The TokTok team.
*/
#ifndef C_TOXCORE_TOXCORE_SHARED_KEY_CACHE_H
#define C_TOXCORE_TOXCORE_SHARED_KEY_CACHE_H
#include <stdint.h> // uint*_t
#include "attributes.h"
#include "crypto_core.h"
#include "logger.h"
#include "mem.h"
#include "mono_time.h"
/**
* This implements a cache for shared keys, since key generation is expensive.
*/
typedef struct Shared_Key_Cache Shared_Key_Cache;
/**
* @brief Initializes a new shared key cache.
* @param mono_time Time object for retrieving current time.
* @param self_secret_key Our own secret key of length CRYPTO_SECRET_KEY_SIZE,
* it must not change during the lifetime of the cache.
* @param timeout Number of milliseconds, after which a key should be evicted.
* @param keys_per_slot There are 256 slots, this controls how many keys are stored per slot and the size of the cache.
* @return nullptr on error.
*/
non_null()
Shared_Key_Cache *shared_key_cache_new(
const Logger *log, const Mono_Time *mono_time, const Memory *mem,
const uint8_t *self_secret_key,
uint64_t timeout, uint8_t keys_per_slot);
/**
* @brief Deletes the cache and frees all resources.
* @param cache Cache to delete or nullptr.
*/
nullable(1)
void shared_key_cache_free(Shared_Key_Cache *cache);
/**
* @brief Looks up a key from the cache or computes it if it didn't exist yet.
* @param cache Cache to perform the lookup on.
* @param public_key Public key, used for the lookup and computation.
*
* @return The shared key of length CRYPTO_SHARED_KEY_SIZE, matching the public key and our secret key.
* @return nullptr on error.
*/
non_null()
const uint8_t *shared_key_cache_lookup(Shared_Key_Cache *cache, const uint8_t public_key[CRYPTO_PUBLIC_KEY_SIZE]);
#endif /* C_TOXCORE_TOXCORE_SHARED_KEY_CACHE_H */
|