📄 code.cpp
字号:
#include "stdafx.h"
#include "./CODE.h"
#include "dll.h"
#include "md5.h"
#include "ripemd.h"
#include "rng.h"
#include "gzip.h"
#include "default.h"
#include "randpool.h"
#include "ida.h"
#include "base64.h"
#include "socketft.h"
#include "wait.h"
#include "factory.h"
#include "validate.h"
#include "bench.h"
#include <iostream>
#include <time.h>
#if defined(USE_BERKELEY_STYLE_SOCKETS) && !defined(macintosh)
#include <netinet/in.h>
#include <netinet/tcp.h>
#endif
#if (_MSC_VER >= 1000)
#include <crtdbg.h> // for the debug heap
#endif
#if defined(__MWERKS__) && defined(macintosh)
#include <console.h>
#endif
USING_NAMESPACE(CryptoPP)
USING_NAMESPACE(std)
string decode;
void XXdecode(const char * code)
{
char pass[]="biqiong";
string outstr;
HexDecoder decryptor(new DefaultDecryptorWithMAC(pass, new StringSink(outstr)));
decryptor.Put((byte *)code, 160);
decryptor.MessageEnd();
decode=outstr;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -