

#include "targetver.h"
#include <windows.h>
#include <stdio.h>
#include <stdlib.h>
#include <fstream>
#include <stdio.h>
#include <iostream>
using namespace std;
char* decrypt(const char* plaintext)
{
int len = strlen(plaintext);
char* cyphertext = new char[len+1];
for(int i=0 ; i<len ; ++i)
{
cyphertext[i] = plaintext - 4;
}
cyphertext[len] = 0;
return cyphertext;
}
Comprou até isso?
mais eu uso o Xor