Files
Sun1602/ProgramCommon/PacketCrypt.h
T
2022-10-26 12:25:11 +08:00

7 lines
223 B
C++

#pragma once
namespace Crypt
{
bool PacketEncode( unsigned char* source, int sourceLen, unsigned char* output, DWORD key );
bool PacketDecode( unsigned char* source, int sourceLen, unsigned char* output, DWORD key );
}