X-Git-Url: https://git.cryptolib.org/?a=blobdiff_plain;f=hmac-sha1.h;h=d0be0299b24fcaa19745bee15ff5bb9bc28b5c55;hb=55961d766375e8415baf7bc1e74fe9ba087e18ad;hp=c8584e36fa5508a1f9302b5c72077ba41ccd7519;hpb=cb23251fd9f7c2d9e519a84b6975091bceb0fa66;p=avr-crypto-lib.git diff --git a/hmac-sha1.h b/hmac-sha1.h index c8584e3..d0be029 100644 --- a/hmac-sha1.h +++ b/hmac-sha1.h @@ -1,6 +1,6 @@ -/* hmac-sha256.h */ +/* hmac-sha1.h */ /* - This file is part of the Crypto-avr-lib/microcrypt-lib. + This file is part of the AVR-Crypto-Lib. Copyright (C) 2008 Daniel Otte (daniel.otte@rub.de) This program is free software: you can redistribute it and/or modify @@ -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_*/