lilcrypto/Makefile.inc
Lucas Gabriel Vuotto ad42d99e0b auth: add HMAC implementation
This allows for checking the SHA-512 implementation against Wycheproof
via the HMAC tests.
2024-06-06 12:41:44 +00:00

11 lines
278 B
Makefile

LC_SRCS+= aead.c aead_chacha20_poly1305.c
LC_SRCS+= auth.c auth_hmac.c auth_poly1305.c
LC_SRCS+= cipher.c cipher_chacha20.c
LC_SRCS+= hash.c hash_sha384_sha512.c
LC_SRCS+= impl_chacha20.c impl_poly1305.c impl_sha512.c
LC_SRCS+= ct.c util.c
WARNINGS= Yes
.include <bsd.own.mk>