1 #include <stdio.h>
2 #include "crypto_hash.h"
3 
4 unsigned char x[8] = "testing\n";
5 unsigned char h[crypto_hash_BYTES];
6 
main()7 int main()
8 {
9   int i;
10   crypto_hash(h,x,sizeof x);
11   for (i = 0;i < crypto_hash_BYTES;++i) printf("%02x",(unsigned int) h[i]);
12   printf("\n");
13   return 0;
14 }
15