Changes to update Tomato RAF.
[tomato.git] / release / src / router / dnscrypt / src / libnacl / tests / hash.c
blob8de470aa712fa5934e85efb59e6ece0fb9d442b4
1 #include <stdio.h>
2 #include "crypto_hash.h"
4 unsigned char x[8] = "testing\n";
5 unsigned char h[crypto_hash_BYTES];
7 int main()
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;