]> git.cryptolib.org Git - avr-crypto-lib.git/blobdiff - hfal_blake_small.c
updated Makefile
[avr-crypto-lib.git] / hfal_blake_small.c
index 4d6600cec68200e14ca01d591074c3a80cd36b8f..1d890f650295aa25e65f291811ca7362a03caddd 100644 (file)
@@ -1,7 +1,7 @@
 /* hfal_blake_small.c */
 /*
     This file is part of the AVR-Crypto-Lib.
-    Copyright (C) 2008  Daniel Otte (daniel.otte@rub.de)
+    Copyright (C) 2009  Daniel Otte (daniel.otte@rub.de)
 
     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
@@ -42,8 +42,8 @@ const hfdesc_t blake28_desc PROGMEM = {
        BLAKE28_BLOCKSIZE,
        224,
        (hf_init_fpt)blake28_init,
-       (hf_nextBlock_fpt)blake28_nextBlock,
-       (hf_lastBlock_fpt)blake28_lastBlock,
+       (hf_nextBlock_fpt)blake_small_nextBlock,
+       (hf_lastBlock_fpt)blake_small_lastBlock,
        (hf_ctx2hash_fpt)blake28_ctx2hash,
        (hf_free_fpt)NULL,
        (hf_mem_fpt)blake28
@@ -57,8 +57,8 @@ const hfdesc_t blake32_desc PROGMEM = {
        BLAKE32_BLOCKSIZE,
        256,
        (hf_init_fpt)blake32_init,
-       (hf_nextBlock_fpt)blake32_nextBlock,
-       (hf_lastBlock_fpt)blake32_lastBlock,
+       (hf_nextBlock_fpt)blake_small_nextBlock,
+       (hf_lastBlock_fpt)blake_small_lastBlock,
        (hf_ctx2hash_fpt)blake32_ctx2hash,
        (hf_free_fpt)NULL,
        (hf_mem_fpt)blake32