2014-04-15 00:32:01 -04:00
|
|
|
|
|
|
|
#define TEST_NAME "auth6"
|
|
|
|
#include "cmptest.h"
|
|
|
|
|
|
|
|
/* "Test Case 2" from RFC 4231 */
|
2015-11-23 10:07:13 -05:00
|
|
|
static unsigned char key[32] = "Jefe";
|
2017-02-23 05:15:29 -05:00
|
|
|
static unsigned char c[] = "what do ya want for nothing?";
|
2014-04-15 00:32:01 -04:00
|
|
|
|
2015-11-23 10:07:13 -05:00
|
|
|
static unsigned char a[64];
|
2014-04-15 00:32:01 -04:00
|
|
|
|
2017-02-23 05:15:29 -05:00
|
|
|
int
|
|
|
|
main(void)
|
2014-04-15 00:32:01 -04:00
|
|
|
{
|
2014-09-14 13:34:16 -04:00
|
|
|
int i;
|
|
|
|
|
2014-09-14 14:32:55 -04:00
|
|
|
crypto_auth_hmacsha512(a, c, sizeof c - 1U, key);
|
|
|
|
for (i = 0; i < 64; ++i) {
|
2017-02-23 05:15:29 -05:00
|
|
|
printf(",0x%02x", (unsigned int) a[i]);
|
2014-09-14 14:32:55 -04:00
|
|
|
if (i % 8 == 7)
|
|
|
|
printf("\n");
|
2014-09-14 13:34:16 -04:00
|
|
|
}
|
|
|
|
return 0;
|
2014-04-15 00:32:01 -04:00
|
|
|
}
|