mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-06 06:05:40 +12:00
25 lines
No EOL
591 B
C++
25 lines
No EOL
591 B
C++
#pragma once
|
|
#include "helpers.hpp"
|
|
#include "kernel_types.hpp"
|
|
#include "logger.hpp"
|
|
#include "memory.hpp"
|
|
|
|
#include <random>
|
|
|
|
class SSLService {
|
|
Handle handle = KernelHandles::SSL;
|
|
Memory& mem;
|
|
MAKE_LOG_FUNCTION(log, sslLogger)
|
|
|
|
std::mt19937 rng; // Use a Mersenne Twister for RNG since this service is supposed to have better rng than just rand()
|
|
bool initialized;
|
|
|
|
// Service commands
|
|
void initialize(u32 messagePointer);
|
|
void generateRandomData(u32 messagePointer);
|
|
|
|
public:
|
|
SSLService(Memory& mem) : mem(mem) {}
|
|
void reset();
|
|
void handleSyncRequest(u32 messagePointer);
|
|
}; |