X-Git-Url: https://git.cryptolib.org/?p=avr-crypto-lib.git;a=blobdiff_plain;f=shacal2%2Fshacal2_enc.h;h=3f120a6323da4bf64cfa80fa85910ea829e63f00;hp=3aeeafc8c461be2ca77f534f46fc09871d6d2a51;hb=4b5da1dc27a791b5c448274a3db09cd035b33493;hpb=7b5401ab9ce23a5da1de8b6c7de3a1aa20ac4cf8 diff --git a/shacal2/shacal2_enc.h b/shacal2/shacal2_enc.h index 3aeeafc..3f120a6 100644 --- a/shacal2/shacal2_enc.h +++ b/shacal2/shacal2_enc.h @@ -1,7 +1,7 @@ /* shacal2_enc.h */ /* 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 @@ -20,14 +20,14 @@ #define SHACAL2_ENC_H_ #include -#include "sha256/sha256.h" +#include "sha256.h" #define SHACAL2_BLOCKSIZE SHA256_HASH_BITS #define SHACAL2_BLOCKSIZE_B ((SHACAL2_BLOCKSIZE+7)/8) #define SHACAL2_KEYSIZE SHA256_BLOCK_BITS #define SHACAL2_KEYSIZE_B ((SHACAL2_KEYSIZE+7)/8) -void shacal2_enc(void* buffer, void* key, uint16_t keysize_b); +void shacal2_enc(void *buffer, void *key, uint16_t keysize_b); #endif /*SHACAL2_ENC_H_*/