ioq3quest/code/qcommon/md4.c

241 lines
5.8 KiB
C
Raw Normal View History

/*
* Cryptographic API.
*
* MD4 Message Digest Algorithm (RFC1320).
*
* Implementation derived from Andrew Tridgell and Steve French's
* CIFS MD4 implementation, and the cryptoapi implementation
* originally based on the public domain implementation written
* by Colin Plumb in 1993.
*
* Copyright (c) Andrew Tridgell 1997-1998.
* Modified by Steve French (sfrench@us.ibm.com) 2002
* Copyright (c) Cryptoapi developers.
* Copyright (c) 2002 David S. Miller (davem@redhat.com)
* Copyright (c) 2002 James Morris <jmorris@intercode.com.au>
*
* 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
* (at your option) any later version.
*
*/
#include "q_shared.h"
#include "qcommon.h"
typedef unsigned int u32;
#define MD4_DIGEST_SIZE 16
#define MD4_HMAC_BLOCK_SIZE 64
#define MD4_BLOCK_WORDS 16
#define MD4_HASH_WORDS 4
struct md4_ctx {
u32 hash[MD4_HASH_WORDS];
u32 block[MD4_BLOCK_WORDS];
u32 byte_count;
2005-08-26 17:39:27 +00:00
};
static ID_INLINE u32 lshift(u32 x, unsigned int s)
2005-08-26 17:39:27 +00:00
{
x &= 0xFFFFFFFF;
return ((x << s) & 0xFFFFFFFF) | (x >> (32 - s));
2005-08-26 17:39:27 +00:00
}
static ID_INLINE u32 F(u32 x, u32 y, u32 z)
2005-08-26 17:39:27 +00:00
{
return (x & y) | ((~x) & z);
}
2005-08-26 17:39:27 +00:00
static ID_INLINE u32 G(u32 x, u32 y, u32 z)
{
return (x & y) | (x & z) | (y & z);
}
2005-08-26 17:39:27 +00:00
static ID_INLINE u32 H(u32 x, u32 y, u32 z)
{
return x ^ y ^ z;
}
#define ROUND1(a,b,c,d,k,s) (a = lshift(a + F(b,c,d) + k, s))
#define ROUND2(a,b,c,d,k,s) (a = lshift(a + G(b,c,d) + k + (u32)0x5A827999,s))
#define ROUND3(a,b,c,d,k,s) (a = lshift(a + H(b,c,d) + k + (u32)0x6ED9EBA1,s))
2005-08-26 17:39:27 +00:00
static ID_INLINE void LittleLongArray(u32 *buf, unsigned int words)
{
while (words--) {
*buf = LittleLong(*buf);
buf++;
2005-08-26 17:39:27 +00:00
}
}
static void md4_transform(u32 *hash, u32 const *in)
2005-08-26 17:39:27 +00:00
{
u32 a, b, c, d;
a = hash[0];
b = hash[1];
c = hash[2];
d = hash[3];
ROUND1(a, b, c, d, in[0], 3);
ROUND1(d, a, b, c, in[1], 7);
ROUND1(c, d, a, b, in[2], 11);
ROUND1(b, c, d, a, in[3], 19);
ROUND1(a, b, c, d, in[4], 3);
ROUND1(d, a, b, c, in[5], 7);
ROUND1(c, d, a, b, in[6], 11);
ROUND1(b, c, d, a, in[7], 19);
ROUND1(a, b, c, d, in[8], 3);
ROUND1(d, a, b, c, in[9], 7);
ROUND1(c, d, a, b, in[10], 11);
ROUND1(b, c, d, a, in[11], 19);
ROUND1(a, b, c, d, in[12], 3);
ROUND1(d, a, b, c, in[13], 7);
ROUND1(c, d, a, b, in[14], 11);
ROUND1(b, c, d, a, in[15], 19);
ROUND2(a, b, c, d,in[ 0], 3);
ROUND2(d, a, b, c, in[4], 5);
ROUND2(c, d, a, b, in[8], 9);
ROUND2(b, c, d, a, in[12], 13);
ROUND2(a, b, c, d, in[1], 3);
ROUND2(d, a, b, c, in[5], 5);
ROUND2(c, d, a, b, in[9], 9);
ROUND2(b, c, d, a, in[13], 13);
ROUND2(a, b, c, d, in[2], 3);
ROUND2(d, a, b, c, in[6], 5);
ROUND2(c, d, a, b, in[10], 9);
ROUND2(b, c, d, a, in[14], 13);
ROUND2(a, b, c, d, in[3], 3);
ROUND2(d, a, b, c, in[7], 5);
ROUND2(c, d, a, b, in[11], 9);
ROUND2(b, c, d, a, in[15], 13);
ROUND3(a, b, c, d,in[ 0], 3);
ROUND3(d, a, b, c, in[8], 9);
ROUND3(c, d, a, b, in[4], 11);
ROUND3(b, c, d, a, in[12], 15);
ROUND3(a, b, c, d, in[2], 3);
ROUND3(d, a, b, c, in[10], 9);
ROUND3(c, d, a, b, in[6], 11);
ROUND3(b, c, d, a, in[14], 15);
ROUND3(a, b, c, d, in[1], 3);
ROUND3(d, a, b, c, in[9], 9);
ROUND3(c, d, a, b, in[5], 11);
ROUND3(b, c, d, a, in[13], 15);
ROUND3(a, b, c, d, in[3], 3);
ROUND3(d, a, b, c, in[11], 9);
ROUND3(c, d, a, b, in[7], 11);
ROUND3(b, c, d, a, in[15], 15);
hash[0] += a;
hash[1] += b;
hash[2] += c;
hash[3] += d;
}
2005-08-26 17:39:27 +00:00
static ID_INLINE void md4_transform_helper(struct md4_ctx *ctx)
{
LittleLongArray(ctx->block, sizeof(ctx->block) / 4);
md4_transform(ctx->hash, ctx->block);
}
2005-08-26 17:39:27 +00:00
static void md4_init(void *ctx)
{
struct md4_ctx *mctx = ctx;
2005-08-26 17:39:27 +00:00
mctx->hash[0] = 0x67452301;
mctx->hash[1] = 0xefcdab89;
mctx->hash[2] = 0x98badcfe;
mctx->hash[3] = 0x10325476;
mctx->byte_count = 0;
2005-08-26 17:39:27 +00:00
}
static void md4_update(void *ctx, const byte *data, unsigned int len)
2005-08-26 17:39:27 +00:00
{
struct md4_ctx *mctx = ctx;
const u32 avail = sizeof(mctx->block) - (mctx->byte_count & 0x3f);
2005-08-26 17:39:27 +00:00
mctx->byte_count += len;
2005-08-26 17:39:27 +00:00
if (avail > len) {
Com_Memcpy((char *)mctx->block + (sizeof(mctx->block) - avail),
data, len);
return;
}
Com_Memcpy((char *)mctx->block + (sizeof(mctx->block) - avail),
data, avail);
2005-08-26 17:39:27 +00:00
md4_transform_helper(mctx);
data += avail;
len -= avail;
while (len >= sizeof(mctx->block)) {
Com_Memcpy(mctx->block, data, sizeof(mctx->block));
md4_transform_helper(mctx);
data += sizeof(mctx->block);
len -= sizeof(mctx->block);
2005-08-26 17:39:27 +00:00
}
Com_Memcpy(mctx->block, data, len);
}
2005-08-26 17:39:27 +00:00
static void md4_final(void *ctx, byte *out)
2005-08-26 17:39:27 +00:00
{
struct md4_ctx *mctx = ctx;
const unsigned int offset = mctx->byte_count & 0x3f;
char *p = (char *)mctx->block + offset;
int padding = 56 - (offset + 1);
*p++ = 0x80;
if (padding < 0) {
Com_Memset(p, 0x00, padding + 8);
md4_transform_helper(mctx);
p = (char *)mctx->block;
padding = 56;
}
2005-08-26 17:39:27 +00:00
Com_Memset(p, 0, padding);
mctx->block[14] = mctx->byte_count << 3;
mctx->block[15] = mctx->byte_count >> 29;
LittleLongArray(mctx->block, (sizeof(mctx->block) - 8) / 4);
md4_transform(mctx->hash, mctx->block);
Com_Memcpy(out, mctx->hash, sizeof(mctx->hash));
Com_Memset(mctx, 0, sizeof(*mctx));
2005-08-26 17:39:27 +00:00
}
//===================================================================
unsigned Com_BlockChecksum( const void *buffer, int length )
2005-08-26 17:39:27 +00:00
{
int digest[4];
unsigned val;
struct md4_ctx ctx;
2005-08-26 17:39:27 +00:00
md4_init( &ctx );
md4_update( &ctx, (byte *)buffer, length );
md4_final( &ctx, (byte *)digest );
2005-08-26 17:39:27 +00:00
val = digest[0] ^ digest[1] ^ digest[2] ^ digest[3];
return val;
}
unsigned Com_BlockChecksumKey( const void *buffer, int length, int key )
2005-08-26 17:39:27 +00:00
{
int digest[4];
unsigned val;
struct md4_ctx ctx;
md4_init( &ctx );
md4_update( &ctx, (byte *)&key, 4 );
md4_update( &ctx, (byte *)buffer, length );
md4_final( &ctx, (byte *)digest );
2005-08-26 17:39:27 +00:00
val = digest[0] ^ digest[1] ^ digest[2] ^ digest[3];
return val;
}