mirror of
https://github.com/EpinelPS/EpinelPS.git
synced 2025-12-17 01:15:13 +01:00
Add libsodium source
This commit is contained in:
41
libsodium-1.0.18-RELEASE/test/default/auth7.c
Normal file
41
libsodium-1.0.18-RELEASE/test/default/auth7.c
Normal file
@@ -0,0 +1,41 @@
|
||||
|
||||
#define TEST_NAME "auth7"
|
||||
#include "cmptest.h"
|
||||
|
||||
static unsigned char key[32];
|
||||
static unsigned char c[600];
|
||||
static unsigned char a[64];
|
||||
|
||||
int
|
||||
main(void)
|
||||
{
|
||||
size_t clen;
|
||||
|
||||
for (clen = 0; clen < sizeof c; ++clen) {
|
||||
crypto_auth_keygen(key);
|
||||
randombytes_buf(c, clen);
|
||||
crypto_auth_hmacsha512(a, c, clen, key);
|
||||
if (crypto_auth_hmacsha512_verify(a, c, clen, key) != 0) {
|
||||
printf("fail %u\n", (unsigned int) clen);
|
||||
return 100;
|
||||
}
|
||||
if (clen > 0) {
|
||||
c[(size_t) rand() % clen] += 1 + (rand() % 255);
|
||||
if (crypto_auth_hmacsha512_verify(a, c, clen, key) == 0) {
|
||||
printf("forgery %u\n", (unsigned int) clen);
|
||||
return 100;
|
||||
}
|
||||
a[rand() % sizeof a] += 1 + (rand() % 255);
|
||||
if (crypto_auth_hmacsha512_verify(a, c, clen, key) == 0) {
|
||||
printf("forgery %u\n", (unsigned int) clen);
|
||||
return 100;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
crypto_auth_keygen(key);
|
||||
crypto_auth_hmacsha512(a, guard_page, 0U, key);
|
||||
assert(crypto_auth_hmacsha512_verify(a, guard_page, 0U, key) == 0);
|
||||
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user