mirror of
https://github.com/0xRoam/LoadReload
synced 2026-06-16 04:43:20 +00:00
8 lines
199 B
C++
8 lines
199 B
C++
#pragma once
|
|
#include <vector>
|
|
#include <cstdint>
|
|
namespace Decryptor {
|
|
std::vector<uint8_t> Decrypt(const std::vector<uint8_t>& input);
|
|
|
|
bool DecryptInPlace(uint8_t* buffer, size_t size);
|
|
} |