diff options
author | Denys Vlasenko | 2010-10-16 20:46:35 +0200 |
---|---|---|
committer | Denys Vlasenko | 2010-10-16 20:46:35 +0200 |
commit | bcccad35318004922cc04487e1df4eade4545966 (patch) | |
tree | d65ad2822b4baf2b4c8e0c3ac02cf74879b03573 /include/libbb.h | |
parent | c0683acce88efc1fe15d9a4332428b5a9fdc6c2e (diff) | |
download | busybox-bcccad35318004922cc04487e1df4eade4545966.zip busybox-bcccad35318004922cc04487e1df4eade4545966.tar.gz |
md5: code shrink; and use 64-byte temp buf, not 128-byte.
function old new delta
md5_hash 111 108 -3
md5_end 129 125 -4
md5_hash_block 459 454 -5
filter_rename_config 250 244 -6
md5_crypt 587 578 -9
popmaildir_main 828 816 -12
------------------------------------------------------------------------------
(add/remove: 0/0 grow/shrink: 0/6 up/down: 0/-39) Total: -39 bytes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'include/libbb.h')
-rw-r--r-- | include/libbb.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/libbb.h b/include/libbb.h index 1031cad..f406fc6 100644 --- a/include/libbb.h +++ b/include/libbb.h @@ -1540,7 +1540,7 @@ typedef struct md5_ctx_t { uint32_t C; uint32_t D; uint64_t total; - char buffer[128]; + char buffer[64]; } md5_ctx_t; #else /* libbb/md5prime.c uses a bit different one: */ |