]> git.cryptolib.org Git - avr-crypto-lib.git/blobdiff - test_src/main-hmac-md5-test.c
global style change (now * is attached to identifier not to type)
[avr-crypto-lib.git] / test_src / main-hmac-md5-test.c
index 410592c90f7dc8c9f23ee44fb4e3ce462e1c465b..d5d6d3d7e9e6b8491266d57656a4ea3677ebd266 100644 (file)
@@ -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',