summaryrefslogtreecommitdiff
path: root/test/default/hash3.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/default/hash3.c')
-rw-r--r--test/default/hash3.c17
1 files changed, 10 insertions, 7 deletions
diff --git a/test/default/hash3.c b/test/default/hash3.c
index a546125..01df6f0 100644
--- a/test/default/hash3.c
+++ b/test/default/hash3.c
@@ -1,16 +1,19 @@
-#include <stdio.h>
#define TEST_NAME "hash3"
#include "cmptest.h"
unsigned char x[] = "testing\n";
-unsigned char h[crypto_hash_sha512_BYTES];
+unsigned char h[crypto_hash_BYTES];
int main(void)
{
- size_t i;
- crypto_hash_sha512(h,x,sizeof x - 1U);
- for (i = 0;i < crypto_hash_sha512_BYTES;++i) printf("%02x",(unsigned int) h[i]);
- printf("\n");
- return 0;
+ size_t i;
+
+ crypto_hash(h, x, sizeof x - 1U);
+ for (i = 0; i < crypto_hash_BYTES; ++i) {
+ printf("%02x", (unsigned int)h[i]);
+ }
+ printf("\n");
+
+ return 0;
}