Sha256: 08630aeb1988ee78a4944236a0a97e087098f9e754b6a4b66e975c413dd69635
Contents?: true
Size: 406 Bytes
Versions: 6
Compression:
Stored size: 406 Bytes
Contents
#include <stdio.h> #define TEST_NAME "auth6" #include "cmptest.h" /* "Test Case 2" from RFC 4231 */ unsigned char key[32] = "Jefe"; unsigned char c[] = "what do ya want for nothing?"; 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
6 entries across 6 versions & 1 rubygems