static void AXIS2_CALL md5_transform()

in util/src/md5.c [41:57]


static void AXIS2_CALL md5_transform(
    unsigned int state[4],
    const unsigned char block[64]);

static void AXIS2_CALL encode(
    unsigned char *output,
    const unsigned int *input,
    unsigned int len);

static void AXIS2_CALL decode(
    unsigned int *output,
    const unsigned char *input,
    unsigned int len);

static 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 };