1
0
Fork 0
mirror of https://git.rip/DMCA_FUCKER/re3.git synced 2024-07-05 21:07:06 +00:00
re3/src/core/KeyGen.h

11 lines
272 B
C
Raw Normal View History

2021-01-08 18:51:31 +00:00
#pragma once
class CKeyGen
{
static uint32 keyTable[256];
public:
static uint32 GetKey(const char *str, int size);
static uint32 GetKey(const char *str);
static uint32 GetUppercaseKey(const char *str);
static uint32 AppendStringToKey(uint32 key, const char *str);
};