libsodium/test/default/hash.c
Frank Denis faa399c3df Only include sodium.h in tests.
Tests should always be passing by just including that.
2013-04-21 17:32:04 -07:00

17 lines
299 B
C

#include <stdio.h>
#define TEST_NAME "hash"
#include "cmptest.h"
unsigned char x[8] = "testing\n";
unsigned char h[crypto_hash_BYTES];
int main(void)
{
int i;
crypto_hash(h,x,sizeof x);
for (i = 0;i < crypto_hash_BYTES;++i) printf("%02x",(unsigned int) h[i]);
printf("\n");
return 0;
}