Do not include scalarmult_ed25519 in minimal builds
This commit is contained in:
parent
b5797ec61f
commit
f5076db5f8
@ -59,7 +59,6 @@ libsodium_la_SOURCES = \
|
|||||||
crypto_scalarmult/crypto_scalarmult.c \
|
crypto_scalarmult/crypto_scalarmult.c \
|
||||||
crypto_scalarmult/curve25519/scalarmult_curve25519.c \
|
crypto_scalarmult/curve25519/scalarmult_curve25519.c \
|
||||||
crypto_scalarmult/curve25519/scalarmult_curve25519.h \
|
crypto_scalarmult/curve25519/scalarmult_curve25519.h \
|
||||||
crypto_scalarmult/ed25519/ref10/scalarmult_ed25519_ref10.c \
|
|
||||||
crypto_secretbox/crypto_secretbox.c \
|
crypto_secretbox/crypto_secretbox.c \
|
||||||
crypto_secretbox/crypto_secretbox_easy.c \
|
crypto_secretbox/crypto_secretbox_easy.c \
|
||||||
crypto_secretbox/xsalsa20poly1305/secretbox_xsalsa20poly1305.c \
|
crypto_secretbox/xsalsa20poly1305/secretbox_xsalsa20poly1305.c \
|
||||||
@ -166,6 +165,7 @@ libsodium_la_SOURCES += \
|
|||||||
crypto_pwhash/scryptsalsa208sha256/pbkdf2-sha256.h \
|
crypto_pwhash/scryptsalsa208sha256/pbkdf2-sha256.h \
|
||||||
crypto_pwhash/scryptsalsa208sha256/pwhash_scryptsalsa208sha256.c \
|
crypto_pwhash/scryptsalsa208sha256/pwhash_scryptsalsa208sha256.c \
|
||||||
crypto_pwhash/scryptsalsa208sha256/nosse/pwhash_scryptsalsa208sha256_nosse.c \
|
crypto_pwhash/scryptsalsa208sha256/nosse/pwhash_scryptsalsa208sha256_nosse.c \
|
||||||
|
crypto_scalarmult/ed25519/ref10/scalarmult_ed25519_ref10.c \
|
||||||
crypto_secretbox/xchacha20poly1305/secretbox_xchacha20poly1305.c \
|
crypto_secretbox/xchacha20poly1305/secretbox_xchacha20poly1305.c \
|
||||||
crypto_shorthash/siphash24/shorthash_siphashx24.c \
|
crypto_shorthash/siphash24/shorthash_siphashx24.c \
|
||||||
crypto_shorthash/siphash24/ref/shorthash_siphashx24_ref.c \
|
crypto_shorthash/siphash24/ref/shorthash_siphashx24_ref.c \
|
||||||
|
@ -33,7 +33,6 @@
|
|||||||
#include "sodium/crypto_pwhash_argon2i.h"
|
#include "sodium/crypto_pwhash_argon2i.h"
|
||||||
#include "sodium/crypto_scalarmult.h"
|
#include "sodium/crypto_scalarmult.h"
|
||||||
#include "sodium/crypto_scalarmult_curve25519.h"
|
#include "sodium/crypto_scalarmult_curve25519.h"
|
||||||
#include "sodium/crypto_scalarmult_ed25519.h"
|
|
||||||
#include "sodium/crypto_secretbox.h"
|
#include "sodium/crypto_secretbox.h"
|
||||||
#include "sodium/crypto_secretbox_xsalsa20poly1305.h"
|
#include "sodium/crypto_secretbox_xsalsa20poly1305.h"
|
||||||
#include "sodium/crypto_secretstream_xchacha20poly1305.h"
|
#include "sodium/crypto_secretstream_xchacha20poly1305.h"
|
||||||
@ -59,6 +58,7 @@
|
|||||||
|
|
||||||
#ifndef SODIUM_LIBRARY_MINIMAL
|
#ifndef SODIUM_LIBRARY_MINIMAL
|
||||||
# include "sodium/crypto_box_curve25519xchacha20poly1305.h"
|
# include "sodium/crypto_box_curve25519xchacha20poly1305.h"
|
||||||
|
# include "sodium/crypto_scalarmult_ed25519.h"
|
||||||
# include "sodium/crypto_secretbox_xchacha20poly1305.h"
|
# include "sodium/crypto_secretbox_xchacha20poly1305.h"
|
||||||
# include "sodium/crypto_pwhash_scryptsalsa208sha256.h"
|
# include "sodium/crypto_pwhash_scryptsalsa208sha256.h"
|
||||||
# include "sodium/crypto_stream_salsa2012.h"
|
# include "sodium/crypto_stream_salsa2012.h"
|
||||||
|
Loading…
Reference in New Issue
Block a user