Skip to content

Commit

Permalink
Verify a single hash/hmac in the tests, not two.
Browse files Browse the repository at this point in the history
  • Loading branch information
Linus Nordberg committed Sep 2, 2013
1 parent 6146c49 commit 5fd15c1
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions tests/t_fticks.c
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
/* Copyright (C) 2011 NORDUnet A/S
* See LICENSE for information about licensing.
*/
/* Copyright (C) 2011,2013, NORDUnet A/S */
/* See LICENSE for licensing information. */

#include <stdio.h>
#include <errno.h>
Expand All @@ -11,7 +10,7 @@ static int
_check_hash(const char *mac, const char *key, const char *hash, const char*hmac)
{
int rv = 0;
uint8_t buf[128];
uint8_t buf[64+1];

if (fticks_hashmac((const uint8_t *) mac, NULL, sizeof(buf), buf) != 0)
return -ENOMEM;
Expand All @@ -31,8 +30,8 @@ _check_hash(const char *mac, const char *key, const char *hash, const char*hmac)
#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 "29c0ee9d9c41771795a11ff75fefe9f5ccaab523ad31fc4fd8e776c707ad158129c0ee9d9c41771795a11ff75fefe9f5ccaab523ad31fc4fd8e776c707ad15"
#define HMAC1 "57c8cd8031142c51ac9747370f48a5aa731006729d0cdf589ba101864f35f39057c8cd8031142c51ac9747370f48a5aa731006729d0cdf589ba101864f35f3"
#define HASH1 "29c0ee9d9c41771795a11ff75fefe9f5ccaab523ad31fc4fd8e776c707ad1581"
#define HMAC1 "57c8cd8031142c51ac9747370f48a5aa731006729d0cdf589ba101864f35f390"

int
main (int argc, char *argv[])
Expand Down

0 comments on commit 5fd15c1

Please sign in to comment.