From b7b0436fb866c5a19769458d47c72a0d2c55f8c0 Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Sat, 13 Sep 2014 14:12:40 -0700 Subject: [PATCH] Test the presence of some extra functions --- test/default/auth.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/default/auth.c b/test/default/auth.c index 68f43b83..96bb4c2b 100644 --- a/test/default/auth.c +++ b/test/default/auth.c @@ -20,6 +20,8 @@ int main(void) assert(crypto_auth_bytes() > 0U); assert(crypto_auth_keybytes() > 0U); assert(strcmp(crypto_auth_primitive(), "hmacsha512256") == 0); + assert(crypto_auth_hmacsha512256_bytes() > 0U); + assert(crypto_auth_hmacsha512256_keybytes() > 0U); return 0; }