2013-01-20 18:41:17 -05:00
|
|
|
|
2013-01-20 18:55:10 -05:00
|
|
|
#define TEST_NAME "hash3"
|
|
|
|
#include "cmptest.h"
|
|
|
|
|
2015-11-23 10:07:13 -05:00
|
|
|
static unsigned char x[] = "testing\n";
|
|
|
|
static unsigned char h[crypto_hash_BYTES];
|
2013-01-20 18:41:17 -05:00
|
|
|
|
2017-02-23 05:25:09 -05:00
|
|
|
int
|
|
|
|
main(void)
|
2013-01-20 18:41:17 -05:00
|
|
|
{
|
2014-09-14 13:34:16 -04:00
|
|
|
size_t i;
|
|
|
|
|
2014-09-14 14:32:55 -04:00
|
|
|
crypto_hash(h, x, sizeof x - 1U);
|
|
|
|
for (i = 0; i < crypto_hash_BYTES; ++i) {
|
2017-02-23 05:25:09 -05:00
|
|
|
printf("%02x", (unsigned int) h[i]);
|
2014-09-14 13:34:16 -04:00
|
|
|
}
|
|
|
|
printf("\n");
|
|
|
|
|
|
|
|
return 0;
|
2013-01-20 18:41:17 -05:00
|
|
|
}
|