I see the code but not to add the number of encryption, such want encrytion seal the number "98" but not to put it.:?:
My Source (MZip.cpp)
:*:
My Source (MZip.cpp)
PHP Code:
void ConvertChar(char* pData,int _size)
{
if(!pData) return;
WORD w;
BYTE b,bh;
for(int i=0;i<_size;i++) {
b = *pData ^ 0xFF;
w = b<<3;
bh = (w&0xff00)>>8;
b = w&0xff;
*pData = BYTE( b | bh );
pData++;
}
}
void RecoveryChar(char* pData,int _size)
{
if(!pData) return;
BYTE b,bh,d;
for(int i=0;i<_size;i++) {
b = *pData;
bh = b&0x07;
d = (bh<<5)|(b>>3);
*pData = d ^ 0xff;
pData++;
}
}