Avoid duplicate crypto_auth.h

This commit is contained in:
Frank Denis 2013-04-19 14:35:09 +02:00
parent 54d96dd417
commit 1a86716acf
7 changed files with 6 additions and 6 deletions

View File

@ -34,10 +34,10 @@ libsodium_la_SOURCES = \
crypto_verify/16/ref/verify_16.c \
crypto_verify/32/ref/crypto_verify.h \
crypto_verify/32/ref/verify_32.c \
crypto_auth/hmacsha256/ref/crypto_auth.h \
crypto_auth/hmacsha256/ref/api.h \
crypto_auth/hmacsha256/ref/hmac_hmacsha256.c \
crypto_auth/hmacsha256/ref/verify_hmacsha256.c \
crypto_auth/hmacsha512256/ref/crypto_auth.h \
crypto_auth/hmacsha512256/ref/api.h \
crypto_auth/hmacsha512256/ref/hmac_hmacsha512256.c \
crypto_auth/hmacsha512256/ref/verify_hmacsha512256.c \
crypto_stream/salsa20/ref/crypto_stream.h \

View File

@ -4,8 +4,8 @@
* Public domain.
* */
#include "api.h"
#include "crypto_hashblocks_sha256.h"
#include "crypto_auth.h"
#define blocks crypto_hashblocks_sha256

View File

@ -1,5 +1,5 @@
#include "api.h"
#include "crypto_verify_32.h"
#include "crypto_auth.h"
int crypto_auth_verify(const unsigned char *h,const unsigned char *in,unsigned long long inlen,const unsigned char *k)
{

View File

@ -4,8 +4,8 @@
* Public domain.
* */
#include "api.h"
#include "crypto_hashblocks_sha512.h"
#include "crypto_auth.h"
#define blocks crypto_hashblocks_sha512

View File

@ -1,5 +1,5 @@
#include "api.h"
#include "crypto_verify_32.h"
#include "crypto_auth.h"
int crypto_auth_verify(const unsigned char *h,const unsigned char *in,unsigned long long inlen,const unsigned char *k)
{