#ifdef __cplusplus
extern
"C"
{
#endif
#include "ulib/md5.h"
#include "ulib/pack.h"
#include "ulib/parse.h"
#ifdef __cplusplus
}
#endif
#ifdef MD5_DEBUG
#undef MD5_DEBUG
#endif
#ifndef PERL_UNUSED_VAR
# define PERL_UNUSED_VAR(x) ((void)x)
#endif
#if PERL_VERSION < 8
# undef SvPVbyte
# define SvPVbyte(sv, lp) (sv_utf8_downgrade((sv), 0), SvPV((sv), (lp)))
#endif
#if BYTEORDER > 0x4321 || defined(TRUNCATE_U32)
#define TO32(x) ((x) & 0xFFFFffff)
#define TRUNC32(x) ((x) &= 0xFFFFffff)
#else
#define TO32(x) (x)
#define TRUNC32(x) /*nothing*/
#endif
static
void
u2s(U32 u, U8* s)
{
*s++ = (U8)(u & 0xFF);
*s++ = (U8)((u >> 8) & 0xFF);
*s++ = (U8)((u >> 16) & 0xFF);
*s = (U8)((u >> 24) & 0xFF);
}
#define s2u(s,u) ((u) = (U32)(*s) | \
((U32)(*(s+1)) << 8) | \
((U32)(*(s+2)) << 16) | \
((U32)(*(s+3)) << 24))
typedef
struct
{
U32 A, B, C, D;
U32 bytes_low;
U32 bytes_high;
U8 buffer[128];
} MD5_CTX;
static
const
unsigned
char
PADDING[64] = {
0x80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
};
#define S11 7
#define S12 12
#define S13 17
#define S14 22
#define S21 5
#define S22 9
#define S23 14
#define S24 20
#define S31 4
#define S32 11
#define S33 16
#define S34 23
#define S41 6
#define S42 10
#define S43 15
#define S44 21
#define F(x, y, z) ((((x) & ((y) ^ (z))) ^ (z)))
#define G(x, y, z) F(z, x, y)
#define H(x, y, z) ((x) ^ (y) ^ (z))
#define I(x, y, z) ((y) ^ ((x) | (~z)))
#define ROTATE_LEFT(x, n) (((x) << (n) | ((x) >> (32-(n)))))
#define FF(a, b, c, d, s, ac) \
(a) += F ((b), (c), (d)) + (NEXTx) + (U32)(ac); \
TRUNC32((a)); \
(a) = ROTATE_LEFT ((a), (s)); \
(a) += (b); \
TRUNC32((a));
#define GG(a, b, c, d, x, s, ac) \
(a) += G ((b), (c), (d)) + X[x] + (U32)(ac); \
TRUNC32((a)); \
(a) = ROTATE_LEFT ((a), (s)); \
(a) += (b); \
TRUNC32((a));
#define HH(a, b, c, d, x, s, ac) \
(a) += H ((b), (c), (d)) + X[x] + (U32)(ac); \
TRUNC32((a)); \
(a) = ROTATE_LEFT ((a), (s)); \
(a) += (b); \
TRUNC32((a));
#define II(a, b, c, d, x, s, ac) \
(a) += I ((b), (c), (d)) + X[x] + (U32)(ac); \
TRUNC32((a)); \
(a) = ROTATE_LEFT ((a), (s)); \
(a) += (b); \
TRUNC32((a));
static
void
MD5Init(MD5_CTX *ctx) {
ctx->A = 0x67452301;
ctx->B = 0xefcdab89;
ctx->C = 0x98badcfe;
ctx->D = 0x10325476;
ctx->bytes_low = ctx->bytes_high = 0;
}
static
void
MD5Transform(MD5_CTX* ctx,
const
U8* buf, STRLEN blocks) {
#ifdef MD5_DEBUG
static
int
tcount = 0;
#endif
U32 A = ctx->A;
U32 B = ctx->B;
U32 C = ctx->C;
U32 D = ctx->D;
do
{
U32 a = A;
U32 b = B;
U32 c = C;
U32 d = D;
U32 X[16];
U32 *uptr = X;
U32 tmp;
#define NEXTx (s2u(buf,tmp), buf += 4, *uptr++ = tmp)
#ifdef MD5_DEBUG
if
(buf == ctx->buffer)
fprintf
(stderr,
"%5d: Transform ctx->buffer"
, ++tcount);
else
fprintf
(stderr,
"%5d: Transform %p (%d)"
, ++tcount, buf, blocks);
{
int
i;
fprintf
(stderr,
"["
);
for
(i = 0; i < 16; i++) {
fprintf
(stderr,
"%x,"
, X[i]);
}
fprintf
(stderr,
"]\n"
);
}
#endif
FF (a, b, c, d, S11, 0xd76aa478);
FF (d, a, b, c, S12, 0xe8c7b756);
FF (c, d, a, b, S13, 0x242070db);
FF (b, c, d, a, S14, 0xc1bdceee);
FF (a, b, c, d, S11, 0xf57c0faf);
FF (d, a, b, c, S12, 0x4787c62a);
FF (c, d, a, b, S13, 0xa8304613);
FF (b, c, d, a, S14, 0xfd469501);
FF (a, b, c, d, S11, 0x698098d8);
FF (d, a, b, c, S12, 0x8b44f7af);
FF (c, d, a, b, S13, 0xffff5bb1);
FF (b, c, d, a, S14, 0x895cd7be);
FF (a, b, c, d, S11, 0x6b901122);
FF (d, a, b, c, S12, 0xfd987193);
FF (c, d, a, b, S13, 0xa679438e);
FF (b, c, d, a, S14, 0x49b40821);
GG (a, b, c, d, 1, S21, 0xf61e2562);
GG (d, a, b, c, 6, S22, 0xc040b340);
GG (c, d, a, b, 11, S23, 0x265e5a51);
GG (b, c, d, a, 0, S24, 0xe9b6c7aa);
GG (a, b, c, d, 5, S21, 0xd62f105d);
GG (d, a, b, c, 10, S22, 0x2441453);
GG (c, d, a, b, 15, S23, 0xd8a1e681);
GG (b, c, d, a, 4, S24, 0xe7d3fbc8);
GG (a, b, c, d, 9, S21, 0x21e1cde6);
GG (d, a, b, c, 14, S22, 0xc33707d6);
GG (c, d, a, b, 3, S23, 0xf4d50d87);
GG (b, c, d, a, 8, S24, 0x455a14ed);
GG (a, b, c, d, 13, S21, 0xa9e3e905);
GG (d, a, b, c, 2, S22, 0xfcefa3f8);
GG (c, d, a, b, 7, S23, 0x676f02d9);
GG (b, c, d, a, 12, S24, 0x8d2a4c8a);
HH (a, b, c, d, 5, S31, 0xfffa3942);
HH (d, a, b, c, 8, S32, 0x8771f681);
HH (c, d, a, b, 11, S33, 0x6d9d6122);
HH (b, c, d, a, 14, S34, 0xfde5380c);
HH (a, b, c, d, 1, S31, 0xa4beea44);
HH (d, a, b, c, 4, S32, 0x4bdecfa9);
HH (c, d, a, b, 7, S33, 0xf6bb4b60);
HH (b, c, d, a, 10, S34, 0xbebfbc70);
HH (a, b, c, d, 13, S31, 0x289b7ec6);
HH (d, a, b, c, 0, S32, 0xeaa127fa);
HH (c, d, a, b, 3, S33, 0xd4ef3085);
HH (b, c, d, a, 6, S34, 0x4881d05);
HH (a, b, c, d, 9, S31, 0xd9d4d039);
HH (d, a, b, c, 12, S32, 0xe6db99e5);
HH (c, d, a, b, 15, S33, 0x1fa27cf8);
HH (b, c, d, a, 2, S34, 0xc4ac5665);
II (a, b, c, d, 0, S41, 0xf4292244);
II (d, a, b, c, 7, S42, 0x432aff97);
II (c, d, a, b, 14, S43, 0xab9423a7);
II (b, c, d, a, 5, S44, 0xfc93a039);
II (a, b, c, d, 12, S41, 0x655b59c3);
II (d, a, b, c, 3, S42, 0x8f0ccc92);
II (c, d, a, b, 10, S43, 0xffeff47d);
II (b, c, d, a, 1, S44, 0x85845dd1);
II (a, b, c, d, 8, S41, 0x6fa87e4f);
II (d, a, b, c, 15, S42, 0xfe2ce6e0);
II (c, d, a, b, 6, S43, 0xa3014314);
II (b, c, d, a, 13, S44, 0x4e0811a1);
II (a, b, c, d, 4, S41, 0xf7537e82);
II (d, a, b, c, 11, S42, 0xbd3af235);
II (c, d, a, b, 2, S43, 0x2ad7d2bb);
II (b, c, d, a, 9, S44, 0xeb86d391);
A += a; TRUNC32(A);
B += b; TRUNC32(B);
C += c; TRUNC32(C);
D += d; TRUNC32(D);
}
while
(--blocks);
ctx->A = A;
ctx->B = B;
ctx->C = C;
ctx->D = D;
}
#ifdef MD5_DEBUG
static
char
*
ctx_dump(MD5_CTX* ctx)
{
static
char
buf[1024];
sprintf
(buf,
"{A=%x,B=%x,C=%x,D=%x,%d,%d(%d)}"
,
ctx->A, ctx->B, ctx->C, ctx->D,
ctx->bytes_low, ctx->bytes_high, (ctx->bytes_low&0x3F));
return
buf;
}
#endif
static
void
MD5Update(MD5_CTX* ctx,
const
U8* buf, STRLEN len) {
STRLEN blocks;
STRLEN fill = ctx->bytes_low & 0x3F;
#ifdef MD5_DEBUG
static
int
ucount = 0;
fprintf
(stderr,
"%5i: Update(%s, %p, %d)\n"
, ++ucount, ctx_dump(ctx), buf, len);
#endif
ctx->bytes_low += len;
if
(ctx->bytes_low < len)
ctx->bytes_high++;
if
(fill) {
STRLEN missing = 64 - fill;
if
(len < missing) {
Copy(buf, ctx->buffer + fill, len, U8);
return
;
}
Copy(buf, ctx->buffer + fill, missing, U8);
MD5Transform(ctx, ctx->buffer, 1);
buf += missing;
len -= missing;
}
blocks = len >> 6;
if
(blocks)
MD5Transform(ctx, buf, blocks);
if
( (len &= 0x3F)) {
Copy(buf + (blocks << 6), ctx->buffer, len, U8);
}
}
static
void
MD5Final(U8* digest, MD5_CTX *ctx) {
STRLEN fill = ctx->bytes_low & 0x3F;
STRLEN padlen = (fill < 56 ? 56 : 120) - fill;
U32 bits_low, bits_high;
#ifdef MD5_DEBUG
fprintf
(stderr,
" Final: %s\n"
, ctx_dump(ctx));
#endif
Copy(PADDING, ctx->buffer + fill, padlen, U8);
fill += padlen;
bits_low = ctx->bytes_low << 3;
bits_high = (ctx->bytes_high << 3) | (ctx->bytes_low >> 29);
u2s(bits_low, ctx->buffer + fill); fill += 4;
u2s(bits_high, ctx->buffer + fill); fill += 4;
MD5Transform(ctx, ctx->buffer, fill >> 6);
#ifdef MD5_DEBUG
fprintf
(stderr,
" Result: %s\n"
, ctx_dump(ctx));
#endif
u2s(ctx->A, digest);
u2s(ctx->B, digest+4);
u2s(ctx->C, digest+8);
u2s(ctx->D, digest+12);
}
static
const
char
*hexdigits =
"0123456789abcdef"
;
static
void
hex_16(
const
unsigned
char
* from,
char
* to) {
const
unsigned
char
*end = from + 16;
char
*d = to;
while
(from < end) {
*d++ = hexdigits[(*from >> 4)];
*d++ = hexdigits[(*from & 0x0F)];
from++;
}
*d =
'\0'
;
}
void
uu_md5_hash(pUCXT, struct_uu_t *io,
char
*name) {
MD5_CTX context;
struct_uu_t ns;
char
tmp[37];
char
vardig;
unsigned
char
digeststr[21];
uu_t packed;
uu_pack1(io, (U8*)&packed);
MD5Init(&context);
MD5Update(&context, (U8*)&packed,
sizeof
(packed));
if
(name)
MD5Update(&context, (U8*)name,
strlen
(name));
MD5Final((U8*)digeststr, &context);
digeststr[20] =
'\0'
;
hex_16(digeststr, tmp);
tmp[32] =
'\0'
;
Move(&tmp[20], &tmp[21], 12,
char
); tmp[20] =
'-'
;
Move(&tmp[16], &tmp[17], 17,
char
); tmp[16] =
'-'
;
Move(&tmp[12], &tmp[13], 22,
char
); tmp[12] =
'-'
;
Move(&tmp[ 8], &tmp[ 9], 27,
char
); tmp[ 8] =
'-'
;
tmp[36] =
'\0'
;
tmp[14] =
'3'
;
vardig = tmp[19] - 48;
if
(vardig > 9) vardig -= 7;
if
(vardig > 15) vardig -= 32;
vardig = vardig & 0x3 | 0x8;
if
(vardig > 9) vardig += 87;
else
vardig += 48;
tmp[19] = vardig;
uu_parse(tmp, io);
}