summaryrefslogtreecommitdiff
path: root/toxcore/crypto_core.h
diff options
context:
space:
mode:
authoriphydf <iphydf@users.noreply.github.com>2016-09-01 00:33:20 +0100
committeriphydf <iphydf@users.noreply.github.com>2016-09-01 16:35:46 +0100
commit77db27331eb326615395fa59f3741424f85887bb (patch)
tree233270b558c30f9a045e30e09c2d5681c800a139 /toxcore/crypto_core.h
parentad135181531e567255c314593984d16cdb839eba (diff)
Sort #includes in all source files.
Diffstat (limited to 'toxcore/crypto_core.h')
-rw-r--r--toxcore/crypto_core.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/toxcore/crypto_core.h b/toxcore/crypto_core.h
index 1c9d7f94..2e89896b 100644
--- a/toxcore/crypto_core.h
+++ b/toxcore/crypto_core.h
@@ -30,12 +30,12 @@
30#include <sodium.h> 30#include <sodium.h>
31#else 31#else
32#include <crypto_box.h> 32#include <crypto_box.h>
33#include <randombytes.h>
34#include <crypto_hash_sha256.h> 33#include <crypto_hash_sha256.h>
35#include <crypto_hash_sha512.h> 34#include <crypto_hash_sha512.h>
35#include <crypto_scalarmult_curve25519.h>
36#include <crypto_verify_16.h> 36#include <crypto_verify_16.h>
37#include <crypto_verify_32.h> 37#include <crypto_verify_32.h>
38#include <crypto_scalarmult_curve25519.h> 38#include <randombytes.h>
39#define crypto_box_MACBYTES (crypto_box_ZEROBYTES - crypto_box_BOXZEROBYTES) 39#define crypto_box_MACBYTES (crypto_box_ZEROBYTES - crypto_box_BOXZEROBYTES)
40/* I know */ 40/* I know */
41#define sodium_memcmp(a, b, c) memcmp(a, b, c) 41#define sodium_memcmp(a, b, c) memcmp(a, b, c)