api.h removal

This commit is contained in:
Frank Denis
2015-11-21 12:36:42 +01:00
parent 16f12c1af3
commit e33a505823
7 changed files with 3 additions and 12 deletions
-3
View File
@@ -135,13 +135,10 @@ libsodium_la_SOURCES = \
crypto_stream/xsalsa20/ref/stream_xsalsa20.c \
crypto_stream/xsalsa20/ref/xor_xsalsa20.c \
crypto_verify/16/verify_16_api.c \
crypto_verify/16/ref/api.h \
crypto_verify/16/ref/verify_16.c \
crypto_verify/32/verify_32_api.c \
crypto_verify/32/ref/api.h \
crypto_verify/32/ref/verify_32.c \
crypto_verify/64/verify_64_api.c \
crypto_verify/64/ref/api.h \
crypto_verify/64/ref/verify_64.c \
randombytes/randombytes.c \
sodium/core.c \
-2
View File
@@ -1,2 +0,0 @@
#include "crypto_verify_16.h"
@@ -1,4 +1,4 @@
#include "api.h"
#include "crypto_verify_16.h"
int crypto_verify_16(const unsigned char *x,const unsigned char *y)
{
-2
View File
@@ -1,2 +0,0 @@
#include "crypto_verify_32.h"
@@ -1,4 +1,4 @@
#include "api.h"
#include "crypto_verify_32.h"
int crypto_verify_32(const unsigned char *x,const unsigned char *y)
{
-2
View File
@@ -1,2 +0,0 @@
#include "crypto_verify_64.h"
@@ -1,4 +1,4 @@
#include "api.h"
#include "crypto_verify_64.h"
int crypto_verify_64(const unsigned char *x,const unsigned char *y)
{