code.cpp

来自「BQYAHOO的Visual C++源代码」· C++ 代码 · 共 54 行

CPP
54
字号



#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 + =
减小字号Ctrl + -
显示快捷键?