Make aead_xchacha20_poly1305 a first-class citizen

This commit is contained in:
Frank Denis
2017-03-02 10:19:08 +01:00
parent 60e9668c14
commit 617862eb5a
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -3,6 +3,7 @@ lib_LTLIBRARIES = \
libsodium_la_SOURCES = \
crypto_aead/chacha20poly1305/sodium/aead_chacha20poly1305.c \
crypto_aead/xchacha20poly1305/sodium/aead_xchacha20poly1305.c \
crypto_auth/crypto_auth.c \
crypto_auth/hmacsha256/auth_hmacsha256.c \
crypto_auth/hmacsha512/auth_hmacsha512.c \
@@ -154,7 +155,6 @@ endif
if !MINIMAL
libsodium_la_SOURCES += \
crypto_aead/xchacha20poly1305/sodium/aead_xchacha20poly1305.c \
crypto_box/curve25519xchacha20poly1305/box_curve25519xchacha20poly1305.c \
crypto_core/hchacha20/core_hchacha20.c \
crypto_secretbox/xchacha20poly1305/secretbox_xchacha20poly1305.c \
+1 -1
View File
@@ -279,6 +279,7 @@ AM_LDFLAGS = @TEST_LDFLAGS@
TESTS_TARGETS = \
aead_aes256gcm \
aead_chacha20poly1305 \
aead_xchacha20poly1305 \
auth \
auth2 \
auth3 \
@@ -546,7 +547,6 @@ xchacha20_LDADD = $(TESTS_LDADD)
if !MINIMAL
TESTS_TARGETS += \
aead_xchacha20poly1305 \
siphashx24 \
xchacha20
endif