X-Git-Url: https://jfr.im/git/irc/evilnet/x3.git/blobdiff_plain/e166c31b0532e84a5d1a3e12db9ce8f3aca2a451..ec8177c5c7b355a953871d6fded9ae77cf2a4a96:/src/md5.c diff --git a/src/md5.c b/src/md5.c index e620be0..c454a04 100644 --- a/src/md5.c +++ b/src/md5.c @@ -5,7 +5,7 @@ * * 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 - * the Free Software Foundation; either version 2 of the License, or + * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, @@ -139,10 +139,10 @@ MD5_CTX *context; /* context */ unsigned char *input; /* input block */ unsigned int inputLen; /* length of input block */ { - unsigned int i, index, partLen; + unsigned int i, idx, partLen; /* Compute number of bytes mod 64 */ - index = (unsigned int)((context->count[0] >> 3) & 0x3F); + idx = (unsigned int)((context->count[0] >> 3) & 0x3F); /* Update number of bits */ if ((context->count[0] += ((UINT4)inputLen << 3)) @@ -150,23 +150,23 @@ unsigned int inputLen; /* length of input block */ context->count[1]++; context->count[1] += ((UINT4)inputLen >> 29); - partLen = 64 - index; + partLen = 64 - idx; /* Transform as many times as possible. */ if (inputLen >= partLen) { - memcpy((POINTER)&context->buffer[index], (POINTER)input, partLen); + memcpy((POINTER)&context->buffer[idx], (POINTER)input, partLen); MD5Transform (context->state, context->buffer); for (i = partLen; i + 63 < inputLen; i += 64) MD5Transform (context->state, &input[i]); - index = 0; + idx = 0; } else i = 0; /* Buffer remaining input */ - memcpy((POINTER)&context->buffer[index], (POINTER)&input[i], + memcpy((POINTER)&context->buffer[idx], (POINTER)&input[i], inputLen-i); } @@ -178,14 +178,14 @@ unsigned char digest[16]; /* message digest */ MD5_CTX *context; /* context */ { unsigned char bits[8]; - unsigned int index, padLen; + unsigned int idx, padLen; /* Save number of bits */ Encode (bits, context->count, 8); /* Pad out to 56 mod 64. */ - index = (unsigned int)((context->count[0] >> 3) & 0x3f); - padLen = (index < 56) ? (56 - index) : (120 - index); + idx = (unsigned int)((context->count[0] >> 3) & 0x3f); + padLen = (idx < 56) ? (56 - idx) : (120 - idx); MD5Update (context, PADDING, padLen); /* Append length (before padding) */ @@ -636,22 +636,22 @@ cryptpass(const char *pass, char *buffer) } int -checkpass(const char *pass, const char *crypt) +checkpass(const char *pass, const char *crypted) { - char new_crypt[MD5_CRYPT_LENGTH], hseed[9]; + char new_crypted[MD5_CRYPT_LENGTH], hseed[9]; int seed; - if (crypt[0] == '$') { + if (crypted[0] == '$') { /* new-style crypt, use "seed" after '$' */ - strncpy(hseed, crypt+1, 8); + strncpy(hseed, crypted+1, 8); hseed[8] = 0; seed = strtoul(hseed, NULL, 16); - cryptpass_real(pass, new_crypt, seed); + cryptpass_real(pass, new_crypted, seed); } else { /* new "old-style" md5 crypt compatable with php, md5sum etc */ - md5(pass, new_crypt); + md5(pass, new_crypted); } - return !strcmp(crypt, new_crypt); + return !strcmp(crypted, new_crypted); }