57 0x80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
58 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
59 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
269static void Encode (
unsigned char *output,
UINT4 *input,
unsigned int len)
273 for (i = 0, j = 0; j < len; i++, j += 4) {
274 output[j] = (
unsigned char)(input[i] & 0xff);
275 output[j+1] = (
unsigned char)((input[i] >> 8) & 0xff);
276 output[j+2] = (
unsigned char)((input[i] >> 16) & 0xff);
277 output[j+3] = (
unsigned char)((input[i] >> 24) & 0xff);
static void Encode(unsigned char *, UINT4 *, unsigned int)
Encodes input (UINT4) into output (unsigned char).
static void Decode(UINT4 *, unsigned char *, unsigned int)
Decodes input (unsigned char) into output (UINT4).