Project SkyFire Core
SkyFire 5.4.8 server core API documentation
Loading...
Searching...
No Matches
AuthDefines.h
Go to the documentation of this file.
1#ifndef _AUTHDEFINES_H
2#define _AUTHDEFINES_H
3
4#include "Define.h"
5#include <array>
6
7constexpr size_t SESSION_KEY_LENGTH = 40;
8using SessionKey = std::array<uint8, SESSION_KEY_LENGTH>;
9
10#endif
constexpr size_t SESSION_KEY_LENGTH
Definition AuthDefines.h:7
std::array< uint8, SESSION_KEY_LENGTH > SessionKey
Definition AuthDefines.h:8