X-Git-Url: https://git.cryptolib.org/?p=avr-crypto-lib.git;a=blobdiff_plain;f=md5%2Fmd5.h;h=da44ad0cb9ee8c59ddd751848d8425639912113a;hp=6b65c4a67888aa15118278cf7d149027108e7640;hb=4b5da1dc27a791b5c448274a3db09cd035b33493;hpb=d32eba56ce10ea6b9eff123b50d9842673b38f2b diff --git a/md5/md5.h b/md5/md5.h index 6b65c4a..da44ad0 100644 --- a/md5/md5.h +++ b/md5/md5.h @@ -1,7 +1,7 @@ /* md5.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 @@ -47,9 +47,9 @@ typedef uint8_t md5_hash_t[MD5_HASH_BYTES]; void md5_init(md5_ctx_t *s); -void md5_nextBlock(md5_ctx_t *state, const void* block); -void md5_lastBlock(md5_ctx_t *state, const void* block, uint16_t length); -void md5_ctx2hash(md5_hash_t* dest, const md5_ctx_t* state); -void md5(md5_hash_t* dest, const void* msg, uint32_t length_b); +void md5_nextBlock(md5_ctx_t *state, const void *block); +void md5_lastBlock(md5_ctx_t *state, const void *block, uint16_t length); +void md5_ctx2hash(md5_hash_t *dest, const md5_ctx_t *state); +void md5(md5_hash_t *dest, const void *msg, uint32_t length_b); #endif /*MD5_H_*/