summaryrefslogtreecommitdiff
path: root/toxcore/crypto_core.h
diff options
context:
space:
mode:
authoriphydf <iphydf@users.noreply.github.com>2018-03-28 13:36:14 +0000
committeriphydf <iphydf@users.noreply.github.com>2018-04-03 17:43:22 +0000
commit37d4a0b2ca1377268a82c085809edf63d19cc782 (patch)
tree9b0724cb55f479689cbc04c8b72f9bde99f775ab /toxcore/crypto_core.h
parent7fa0c89c96bdaf45bf202d770aa56dc7c68959b9 (diff)
Avoid the use of rand() in tests.
We control the random functions in crypto_core, so we can make them deterministic more easily. This will help test reproducibility in the future.
Diffstat (limited to 'toxcore/crypto_core.h')
-rw-r--r--toxcore/crypto_core.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/toxcore/crypto_core.h b/toxcore/crypto_core.h
index 2c83fd25..e7e913b6 100644
--- a/toxcore/crypto_core.h
+++ b/toxcore/crypto_core.h
@@ -127,6 +127,11 @@ void crypto_sha512(uint8_t *hash, const uint8_t *data, size_t length);
127int32_t public_key_cmp(const uint8_t *pk1, const uint8_t *pk2); 127int32_t public_key_cmp(const uint8_t *pk1, const uint8_t *pk2);
128 128
129/** 129/**
130 * Return a random 8 bit integer.
131 */
132uint8_t random_u08(void);
133
134/**
130 * Return a random 16 bit integer. 135 * Return a random 16 bit integer.
131 */ 136 */
132uint16_t random_u16(void); 137uint16_t random_u16(void);