You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
472 B

3 years ago
# LLO - Low Level Obfuscation Utils
3 years ago
This repo contains a list of utils that will probably need to be implimented for LLO.
3 years ago
* llo::utils::generate_random, generate a random numerical value.
```cpp
```
3 years ago
3 years ago
* llo::utils::hash_t templated class that contains unique std::uint64_t hash value for any given data. use std::hash to compute the hash. https://en.cppreference.com/w/cpp/utility/hash. use std::hash<std::varient> to hash type T and a random uint64_t..
3 years ago
3 years ago
```cpp
3 years ago
3 years ago
```