1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
|
/* Copyright (C) 2011,2013, NORDUnet A/S */
/* See LICENSE for licensing information. */
#include "../fticks_hashmac.h"
#include "../radsecproxy.h"
#include <errno.h>
#include <stdio.h>
#include <string.h>
static int
_check_hash(const char *mac, const char *key, const char *hash, const char *hmac) {
int rv = 0;
uint8_t buf[64 + 1];
if (fticks_hashmac((const uint8_t *)mac, NULL, sizeof(buf), buf) != 0)
return -ENOMEM;
if (strcmp(hash, (const char *)buf) != 0)
rv = !!fprintf(stderr, "%s: bad hash: %s\n", mac, buf);
if (fticks_hashmac((const uint8_t *)mac, (const uint8_t *)key,
sizeof(buf), buf) != 0)
return -ENOMEM;
if (strcmp(hmac, (const char *)buf) != 0)
rv = !!fprintf(stderr, "%s: bad hash (key=\"%s\"): %s\n", mac, key, buf);
return rv;
}
#define MAC1 "00:23:14:0a:f7:24"
#define MAC1_UC "00:23:14:0A:F7:24"
#define MAC1_APPENDED "00:23:14:0a:f7:24;cruft"
#define MAC1_WEIRD "00:23:-[?xyzzy!]-14:0a:f7:24"
#define KEY1 "magic passphrase"
#define HASH1 "29c0ee9d9c41771795a11ff75fefe9f5ccaab523ad31fc4fd8e776c707ad1581"
#define HMAC1 "57c8cd8031142c51ac9747370f48a5aa731006729d0cdf589ba101864f35f390"
int main(int argc, char *argv[]) {
int testcount = 5;
printf("1..%d\n", testcount);
testcount = 1;
if (_check_hash(MAC1, KEY1, HASH1, HMAC1) != 0)
printf("not ");
printf("ok %d - basic hash\n", testcount++);
/* Again, for good measure. (Or rather to make sure there's no
state left.) */
if (_check_hash(MAC1, KEY1, HASH1, HMAC1) != 0)
printf("not ");
printf("ok %d - hash stateless\n", testcount++);
if (_check_hash(MAC1_UC, KEY1, HASH1, HMAC1) != 0)
printf("not ");
printf("ok %d - hash uppercase\n", testcount++);
if (_check_hash(MAC1_APPENDED, KEY1, HASH1, HMAC1) != 0)
printf("not ");
printf("ok %d - hash appended\n", testcount++);
if (_check_hash(MAC1_WEIRD, KEY1, HASH1, HMAC1) != 0)
printf("not ");
printf("ok %d - hash weird\n", testcount++);
return 0;
}
|