Avoid duplicate crypto_scalarmult.h

This commit is contained in:
Frank Denis 2013-04-19 14:46:15 +02:00
parent bb2af7396e
commit 195df90524
4 changed files with 3 additions and 3 deletions

View File

@ -17,8 +17,8 @@ libsodium_la_SOURCES = \
crypto_generichash/blake2/ref/blake2b-ref.c \
crypto_generichash/blake2/ref/blake2s-ref.c \
crypto_generichash/blake2/ref/generichash_blake2b.c \
crypto_scalarmult/curve25519/ref/api.h \
crypto_scalarmult/curve25519/ref/base_curve25519_ref.c \
crypto_scalarmult/curve25519/ref/crypto_scalarmult.h \
crypto_scalarmult/curve25519/ref/smult_curve25519_ref.c \
crypto_hashblocks/sha256/ref/blocks_sha256.c \
crypto_hashblocks/sha256/ref/api.h \

View File

@ -5,7 +5,7 @@ Public domain.
Derived from public domain code by D. J. Bernstein.
*/
#include "crypto_scalarmult.h"
#include "api.h"
const unsigned char base[32] = {9};

View File

@ -5,7 +5,7 @@ Public domain.
Derived from public domain code by D. J. Bernstein.
*/
#include "crypto_scalarmult.h"
#include "api.h"
static void add(unsigned int out[32],const unsigned int a[32],const unsigned int b[32])
{