Sha256: 2be15c4cf4dc8bc68dd66e394504cdea35ea607a1fd7e42fc4513d8805c711a2
Contents?: true
Size: 444 Bytes
Versions: 5
Compression:
Stored size: 444 Bytes
Contents
#define TEST_NAME "auth6" #include "cmptest.h" /* "Test Case 2" from RFC 4231 */ static unsigned char key[32] = "Jefe"; static unsigned char c[] = "what do ya want for nothing?"; static unsigned char a[64]; int main(void) { int i; crypto_auth_hmacsha512(a, c, sizeof c - 1U, key); for (i = 0; i < 64; ++i) { printf(",0x%02x", (unsigned int)a[i]); if (i % 8 == 7) printf("\n"); } return 0; }
Version data entries
5 entries across 5 versions & 1 rubygems