/// /// Created by Anonymous275 on 7/28/2020 /// #pragma once #ifdef __linux #define EXCEPTION_POINTERS void #else #include #endif #include "Xor.h" #include struct RSA { int n = 0; int e = 0; int d = 0; }; std::string RSA_E(const std::string& Data, int e, int n); std::string RSA_E(const std::string& Data, RSA* k); std::string RSA_D(const std::string& Data, RSA* k); int Handle(EXCEPTION_POINTERS* ep, char* Origin); RSA* GenKey();