radsecproxy-1.6.5.
[libradsec.git] / tests / t_fticks.c
index 71a015e..c7c6ab6 100644 (file)
@@ -1,11 +1,53 @@
+/* Copyright (C) 2011,2013, NORDUnet A/S */
+/* See LICENSE for licensing information. */
+
+#include <stdio.h>
+#include <errno.h>
 #include "../radsecproxy.h"
-#include "../fticks.h"
+#include "../fticks_hashmac.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[])
 {
-  uint8_t buf[128];
+  if (_check_hash(MAC1, KEY1, HASH1, HMAC1) != 0)
+    return 1;
+  /* Again, for good measure.  (Or rather to make sure there's no
+     state left.)  */
+  if (_check_hash(MAC1, KEY1, HASH1, HMAC1) != 0)
+    return 1;
+  if (_check_hash(MAC1_UC, KEY1, HASH1, HMAC1) != 0)
+    return 1;
+  if (_check_hash(MAC1_APPENDED, KEY1, HASH1, HMAC1) != 0)
+    return 1;
+  if (_check_hash(MAC1_WEIRD, KEY1, HASH1, HMAC1) != 0)
+    return 1;
 
-  fticks_hashmac((const uint8_t *) "xyzzy", NULL, sizeof(buf), buf);
   return 0;
 }