]> git.cryptolib.org Git - avr-crypto-lib.git/blobdiff - test_src/main-hmac-md5-test.c
fixing E-Mail-Address & Copyright
[avr-crypto-lib.git] / test_src / main-hmac-md5-test.c
index 410592c90f7dc8c9f23ee44fb4e3ce462e1c465b..6843935a5631a464364fafb1f1bf74875773a23c 100644 (file)
@@ -1,7 +1,7 @@
 /* main-hmac-md5-test.c */
 /*
     This file is part of the AVR-Crypto-Lib.
-    Copyright (C) 2008  Daniel Otte (daniel.otte@rub.de)
+    Copyright (C) 2006-2015 Daniel Otte (bg@nerilex.org)
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published by
@@ -27,7 +27,7 @@
 #include "hmac-md5.h"
 #include "nessie_mac_test.h"
 
-charalgo_name = "HMAC-MD5";
+char *algo_name = "HMAC-MD5";
 
 /*****************************************************************************
  *  additional validation-functions                                                                                     *
@@ -87,7 +87,7 @@ void hmacmd5_interactive(void){
        cli_hexdump(hmac, HMAC_MD5_BYTES);
 }
 
-void strhexdump(char* dest, void* src, uint16_t length){
+void strhexdump(char *dest, void *src, uint16_t length){
        char table[] = { '0', '1', '2', '3', 
                         '4', '5', '6', '7', 
                                         '8', '9', 'a', 'b',