serval-dna/nacl/nacl-20110221/tests/hash.c
Daniel O'Connor bf9710fd5a Unpacked nacl-20110221 after processing by nacl-prepare-sources.
This only affects build_android, if nacl-gcc-prep is run then build/`uname -s` will be created.
2012-02-27 12:40:14 +10:30

15 lines
273 B
C

#include <stdio.h>
#include "crypto_hash.h"
unsigned char x[8] = "testing\n";
unsigned char h[crypto_hash_BYTES];
int main()
{
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;
}