header-mangling-part-1-move-functions-out-of-headers

This commit is contained in:
Con Kolivas 2011-03-09 08:33:44 +11:00
parent f6f0a25ef6
commit e5dfd2d9d8
5 changed files with 324 additions and 313 deletions

13
md5.h
View file

@ -62,19 +62,6 @@
extern "C" {
# endif
/* Structure to save state of computation between the single steps. */
struct md5_ctx
{
uint32_t A;
uint32_t B;
uint32_t C;
uint32_t D;
uint32_t total[2];
uint32_t buflen;
uint32_t buffer[32];
};
/*
* The following three functions are build up the low level used in
* the functions `md5_stream' and `md5_buffer'.