X-Git-Url: https://git.cryptolib.org/?a=blobdiff_plain;f=hmac-sha1.h;h=d0be0299b24fcaa19745bee15ff5bb9bc28b5c55;hb=55961d766375e8415baf7bc1e74fe9ba087e18ad;hp=2fdb2432cb7b38769751dc9b40a16dcb1d710301;hpb=e5a49deb52521f019e37779d6e9d81ec4f02aba4;p=avr-crypto-lib.git diff --git a/hmac-sha1.h b/hmac-sha1.h index 2fdb243..d0be029 100644 --- a/hmac-sha1.h +++ b/hmac-sha1.h @@ -1,4 +1,4 @@ -/* hmac-sha256.h */ +/* hmac-sha1.h */ /* This file is part of the AVR-Crypto-Lib. Copyright (C) 2008 Daniel Otte (daniel.otte@rub.de) @@ -21,15 +21,21 @@ #include "sha1.h" -#define HMACSHA1_BITS SHA1_HASH_BITS -#define HMACSHA1_BYTES ((HMAC_BITS+7)/8) +#define HMAC_SHA1_BITS SHA1_HASH_BITS +#define HMAC_SHA1_BYTES SHA1_HASH_BYTES +#define HMAC_SHA1_BLOCK_BITS SHA1_BLOCK_BITS +#define HMAC_SHA1_BLOCK_BYTES SHA1_BLOCK_BYTES -typedef sha1_ctx_t hmac_sha1_ctx_t; +typedef struct{ + sha1_ctx_t a, b; +} hmac_sha1_ctx_t; -void hmac_sha1_init(hmac_sha1_ctx_t *s, void* key, uint16_t keylength_b); -void hmac_sha1_final(hmac_sha1_ctx_t *s, void* key, uint16_t keylength_b); -void hmac_sha1(void* dest, void* key, uint16_t keylength_b, void* msg, uint64_t msglength_b); +void hmac_sha1_init(hmac_sha1_ctx_t *s, const void* key, uint16_t keylength_b); +void hmac_sha1_nextBlock(hmac_sha1_ctx_t *s, const void* block); +void hmac_sha1_lastBlock(hmac_sha1_ctx_t *s, const void* block, uint16_t length_b); +void hmac_sha1_final(void* dest, hmac_sha1_ctx_t *s); +void hmac_sha1(void* dest, const void* key, uint16_t keylength_b, const void* msg, uint32_t msglength_b); #endif /*HMACSHA1_H_*/