2013-04-19 18:28:19 -04:00
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include "crypto_uint8.h"
|
|
|
|
|
|
|
|
#define TEST_NAME "generichash"
|
|
|
|
#include "cmptest.h"
|
|
|
|
|
|
|
|
int main(void)
|
|
|
|
{
|
|
|
|
#define MAXLEN 64
|
|
|
|
crypto_uint8 in[MAXLEN], out[crypto_generichash_BYTES_MAX], k[crypto_generichash_KEYBYTES_MAX];
|
2013-04-27 02:25:14 -04:00
|
|
|
size_t h,i,j;
|
2013-04-19 18:28:19 -04:00
|
|
|
|
|
|
|
for(h = 0; h < crypto_generichash_KEYBYTES_MAX; ++h) k[h] = h;
|
|
|
|
|
|
|
|
for(i = 0; i < MAXLEN; ++i) {
|
|
|
|
in[i]=i;
|
2013-04-21 08:46:21 -04:00
|
|
|
crypto_generichash(out, 1 + i % crypto_generichash_BYTES_MAX,
|
|
|
|
in, i,
|
|
|
|
k, 1 + i % crypto_generichash_KEYBYTES_MAX);
|
2013-04-19 18:28:19 -04:00
|
|
|
for (j = 0;j < 1 + i % crypto_generichash_BYTES_MAX;++j) {
|
|
|
|
printf("%02x",(unsigned int) out[j]);
|
|
|
|
}
|
|
|
|
printf("\n");
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|