SourcePP
Several modern C++20 libraries for sanely parsing Valve's formats.
Loading...
Searching...
No Matches
Globals.cpp
Go to the documentation of this file.
2
3#include <tomcrypt.h>
4
5namespace sourcepp::crypto {
6
7const bool LTM_MATH = [] {
8 ltc_mp = ltm_desc;
9 return true;
10}();
11
12const int AES_INDEX = register_cipher(&aes_desc);
13const int SHA256_INDEX = register_hash(&sha256_desc);
14const int YARROW_INDEX = register_prng(&yarrow_desc);
15
16} // namespace sourcepp::crypto
const int AES_INDEX
Definition Globals.cpp:12
const int YARROW_INDEX
Definition Globals.cpp:14
const bool LTM_MATH
Definition Globals.cpp:7
const int SHA256_INDEX
Definition Globals.cpp:13