summaryrefslogtreecommitdiff
path: root/toxcore/Makefile.inc
diff options
context:
space:
mode:
authorirungentoo <irungentoo@gmail.com>2014-04-21 16:51:36 -0400
committerirungentoo <irungentoo@gmail.com>2014-04-21 16:51:36 -0400
commit9c6a8432ce7298766669d1e6a966b5493971afb7 (patch)
tree8fd98c412610cbcf3fa8b7c28e0a5efbe02bad77 /toxcore/Makefile.inc
parent1603ca974eae3fe0d94b597103f04acfb96fcab0 (diff)
Crypto related cleanups.
Moved Bunch of functions from net_crypto to crypto_core. decrypt_data_fast and decrypt_data_symmetric were the same thing therefore, removed decrypt_data_fast. Replaced all the crypto_secretbox_* defines with the equivalent crypto_box_* one. New define: crypto_box_KEYBYTES that is equal to crypto_box_BEFORENMBYTES.
Diffstat (limited to 'toxcore/Makefile.inc')
-rw-r--r--toxcore/Makefile.inc2
1 files changed, 2 insertions, 0 deletions
diff --git a/toxcore/Makefile.inc b/toxcore/Makefile.inc
index 5e529267..7723aeaf 100644
--- a/toxcore/Makefile.inc
+++ b/toxcore/Makefile.inc
@@ -9,6 +9,8 @@ libtoxcore_la_SOURCES = ../toxcore/DHT.h \
9 ../toxcore/DHT.c \ 9 ../toxcore/DHT.c \
10 ../toxcore/network.h \ 10 ../toxcore/network.h \
11 ../toxcore/network.c \ 11 ../toxcore/network.c \
12 ../toxcore/crypto_core.h \
13 ../toxcore/crypto_core.c \
12 ../toxcore/Lossless_UDP.h \ 14 ../toxcore/Lossless_UDP.h \
13 ../toxcore/Lossless_UDP.c \ 15 ../toxcore/Lossless_UDP.c \
14 ../toxcore/net_crypto.h \ 16 ../toxcore/net_crypto.h \