Sha256: b3060220c98e7f9d113c402cb32990323d9a5e9e6ff4da393a417f61ac352d36
Contents?: true
Size: 871 Bytes
Versions: 6
Compression:
Stored size: 871 Bytes
Contents
#include <stdio.h> #include <stdlib.h> #include "windows/windows-quirks.h" #define TEST_NAME "auth7" #include "cmptest.h" unsigned char key[32]; unsigned char c[10000]; unsigned char a[64]; int main(void) { int clen; for (clen = 0;clen < 10000;++clen) { randombytes(key,sizeof key); randombytes(c,clen); crypto_auth_hmacsha512(a,c,clen,key); if (crypto_auth_hmacsha512_verify(a,c,clen,key) != 0) { printf("fail %d\n",clen); return 100; } if (clen > 0) { c[rand() % clen] += 1 + (rand() % 255); if (crypto_auth_hmacsha512_verify(a,c,clen,key) == 0) { printf("forgery %d\n",clen); return 100; } a[rand() % sizeof a] += 1 + (rand() % 255); if (crypto_auth_hmacsha512_verify(a,c,clen,key) == 0) { printf("forgery %d\n",clen); return 100; } } } return 0; }
Version data entries
6 entries across 6 versions & 1 rubygems