mirror of
https://github.com/halpz/re3.git
synced 2025-04-23 02:56:59 +00:00
11 lines
272 B
C++
11 lines
272 B
C++
#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);
|
|
}; |