Anonymous275 31c96cee94 V0.6
rewrite
2020-08-21 20:58:10 +03:00

17 lines
345 B
C++

///
/// Created by Anonymous275 on 7/28/2020
///
#pragma once
#include <WS2tcpip.h>
#include <string>
#include "Xor.h"
struct RSA{
int n = 0;
int e = 0;
int d = 0;
};
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();