*: pass md5/shaN context pointer as 1st arg, not last

function                                             old     new   delta
md5_hash_block                                       458     459      +1
filter_rename_config                                 252     250      -2
md5_crypt                                            591     587      -4

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
Denys Vlasenko
2010-10-16 20:45:27 +02:00
parent 1a5e11c874
commit c0683acce8
7 changed files with 40 additions and 40 deletions

View File

@ -109,9 +109,9 @@ int popmaildir_main(int argc UNUSED_PARAM, char **argv)
s[1] = '\0';
// get md5 sum of "<stamp>password" string
md5_begin(&md5.ctx);
md5_hash(buf, strlen(buf), &md5.ctx);
md5_hash(G.pass, strlen(G.pass), &md5.ctx);
md5_end(res, &md5.ctx);
md5_hash(&md5.ctx, buf, strlen(buf));
md5_hash(&md5.ctx, G.pass, strlen(G.pass));
md5_end(&md5.ctx, res);
*bin2hex(md5.hex, (char*)res, 16) = '\0';
// APOP
s = xasprintf("%s %s", G.user, md5.hex);