libbb/md5: code shrink

function                                             old     new   delta
md5_end                                              123     117      -6
md5_begin                                             49      42      -7
md5_hash                                             119     104     -15

Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
This commit is contained in:
Denys Vlasenko
2010-10-16 01:08:32 +02:00
parent 3d16098494
commit 70186711f4
2 changed files with 26 additions and 23 deletions

View File

@@ -1540,7 +1540,6 @@ typedef struct md5_ctx_t {
uint32_t C;
uint32_t D;
uint64_t total;
uint32_t buflen;
char buffer[128];
} md5_ctx_t;
#else