1
mirror of https://github.com/jedisct1/libsodium.git synced 2024-12-19 18:15:18 -07:00

Merge pull request #867 from angt/add-test-aegis256

Add tests for AEGIS-256
This commit is contained in:
Frank Denis 2019-09-12 19:56:40 +02:00 committed by GitHub
commit 285b34141d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 2219 additions and 0 deletions

View File

@ -6,6 +6,7 @@ EXTRA_DIST = \
pre.js.inc \
aead_aes256gcm.exp \
aead_aes256gcm2.exp \
aead_aegis256.exp \
aead_chacha20poly1305.exp \
aead_chacha20poly13052.exp \
aead_xchacha20poly1305.exp \
@ -86,6 +87,7 @@ EXTRA_DIST = \
DISTCLEANFILES = \
aead_aes256gcm.res \
aead_aes256gcm2.res \
aead_aegis256.res \
aead_chacha20poly1305.res \
aead_chacha20poly13052.res \
aead_xchacha20poly1305.res \
@ -176,6 +178,7 @@ AM_LDFLAGS = @TEST_LDFLAGS@
TESTS_TARGETS = \
aead_aes256gcm \
aead_aes256gcm2 \
aead_aegis256 \
aead_chacha20poly1305 \
aead_chacha20poly13052 \
aead_xchacha20poly1305 \
@ -261,6 +264,9 @@ aead_aes256gcm_LDADD = $(TESTS_LDADD)
aead_aes256gcm2_SOURCE = cmptest.h aead_aes256gcm2.c
aead_aes256gcm2_LDADD = $(TESTS_LDADD)
aead_aegis256_SOURCE = cmptest.h aead_aegis256.c
aead_aegis256_LDADD = $(TESTS_LDADD)
aead_chacha20poly1305_SOURCE = cmptest.h aead_chacha20poly1305.c
aead_chacha20poly1305_LDADD = $(TESTS_LDADD)

2212
test/default/aead_aegis256.c Normal file

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1 @@
OK