Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 19 of file encode.c.
{ PUCHAR ptr; USHORT i; ptr = (PUCHAR)String->Buffer; if (String->Length > 1) { for (i = String->Length; i > 1; i--) { ptr[i - 1] ^= ptr[i - 2] ^ Hash; } } if (String->Length >= 1) { ptr[0] ^= Hash | (UCHAR)0x43; } }