diff options
| author | George Hazan <george.hazan@gmail.com> | 2012-07-02 14:06:05 +0000 | 
|---|---|---|
| committer | George Hazan <george.hazan@gmail.com> | 2012-07-02 14:06:05 +0000 | 
| commit | 1dde355843ce5d2023e56fe3a8ff142b9eebe76a (patch) | |
| tree | 3b479e52864d101c8d5785cb3c2c2b522d5504b8 | |
| parent | 960bb20ccd3c375bcfc8b642fcbe89feaf143b22 (diff) | |
adaptation of cryptlib for VS2010
git-svn-id: http://svn.miranda-ng.org/main/trunk@713 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
22 files changed, 54 insertions, 12780 deletions
diff --git a/plugins/CryptoPP/commonheaders.h b/plugins/CryptoPP/commonheaders.h index e64825e1d4..198b9539fb 100644 --- a/plugins/CryptoPP/commonheaders.h +++ b/plugins/CryptoPP/commonheaders.h @@ -2,21 +2,16 @@  #define WIN32_LEAN_AND_MEAN
  #define NETLIB_LOG
 +#define CRYPTOPP_DEFAULT_NO_DLL
  #ifdef _MSC_VER
 -#pragma once
 -#define _CRT_SECURE_NO_WARNINGS
 -#define _SCL_SECURE_NO_WARNINGS
 -#if _MSC_VER >= 1300
 -//#pragma comment (compiler,"/GS-")
 -//#pragma comment (linker,"/NODEFAULTLIB:libcmt.lib")
 -//#pragma comment (lib,"../../lib/msvcrt.lib")
 -//#pragma comment (lib,"../../lib/msvcrt71.lib")
 -#else
 -#ifndef _DEBUG
 -#pragma optimize("gsy", on)
 -#endif
 -#endif
 +	#pragma once
 +	#define _CRT_SECURE_NO_WARNINGS
 +	#define _SCL_SECURE_NO_WARNINGS
 +	#define NOMINMAX
 +	#ifndef WIN64
 +		#define _USE_32BIT_TIME_T
 +	#endif
  #endif
  #ifndef _WIN32_WINNT
 @@ -27,36 +22,20 @@  #define _WIN32_IE 0x0501
  #endif
 +#include <limits>
 +
  #define MIRANDA_VER 0x0A00
  #include <m_stdhdr.h>
 -#if _MSC_VER > 1000
  #include <windows.h>
 -#else
 -#include <afxwin.h>
 -#endif
 -#include <process.h>
 +#include <wincrypt.h>
  #include <winsock2.h>
 +
 +#include <process.h>
  #include <stdio.h>
  #include <stdlib.h>
  #include <string.h>
 -//#pragma comment(linker,"/filealign:16")
 -//#pragma comment(linker,"/align:16")
 -//#pragma optimize("gsy", on)
 -#ifdef _DEBUG
 -#if _MSC_VER >= 1300
 -#pragma comment(lib,"crypto/Debug9/cryptlib.lib")
 -#else
 -#pragma comment(lib,"crypto/Debug/cryptlib.lib")
 -#endif
 -#else
 -#if _MSC_VER >= 1300
 -#pragma comment(lib,"crypto/Release9/cryptlib.lib")
 -#else
 -#pragma comment(lib,"crypto/Release/cryptlib.lib")
 -#endif
 -#endif
  #pragma comment(lib,"kernel32.lib")
  #pragma comment(lib,"user32.lib")
 @@ -64,16 +43,17 @@  #define M_API_H__
  // Miranda API
 -#include "newpluginapi.h"
 -#include "m_stdhdr.h"
 -#include "m_plugins.h"
 -#include "m_system.h"
 -#include "m_database.h"
 -#include "m_protomod.h"
 -#include "m_protosvc.h"
 -#include "m_utils.h"
 -#include "m_netlib.h"
 -#include "sdk/m_updater.h"
 +#include <newpluginapi.h>
 +#include <m_stdhdr.h>
 +#include <m_plugins.h>
 +#include <m_system.h>
 +#include <m_database.h>
 +#include <m_langpack.h>
 +#include <m_protomod.h>
 +#include <m_protosvc.h>
 +#include <m_utils.h>
 +#include <m_netlib.h>
 +#include <m_updater.h>
  #endif
 @@ -93,7 +73,7 @@  extern LPCSTR szModuleName;
  extern LPCSTR szVersionStr;
 -extern char TEMP[MAX_PATH];
 +extern TCHAR TEMP[MAX_PATH];
  extern int  TEMP_SIZE;
  extern BOOL isVista;
 @@ -127,7 +107,6 @@ PBYTE cpp_alloc_pdata(pCNTX);  extern "C" {
   DLLEXPORT int Load(PLUGINLINK *);
 - DLLEXPORT PLUGININFO *MirandaPluginInfo(DWORD);
   DLLEXPORT PLUGININFOEX *MirandaPluginInfoEx(DWORD);
   DLLEXPORT MUUID* MirandaPluginInterfaces(void);
   DLLEXPORT int Unload();
 diff --git a/plugins/CryptoPP/cpp_rsam.cpp b/plugins/CryptoPP/cpp_rsam.cpp index a40c11f4b6..f4fce6c807 100644 --- a/plugins/CryptoPP/cpp_rsam.cpp +++ b/plugins/CryptoPP/cpp_rsam.cpp @@ -4,7 +4,7 @@  #define RAND_SIZE (256/8)
 -RSA_EXPORT exp = {
 +RSA_EXPORT exports = {
      rsa_gen_keypair,
      rsa_get_keypair,
      rsa_get_keyhash,
 @@ -51,7 +51,7 @@ int __cdecl rsa_init(pRSA_EXPORT* e, pRSA_IMPORT i) {  #if defined(_DEBUG) || defined(NETLIB_LOG)
  	Sent_NetLog("rsa_init");
  #endif
 -	*e = &exp;
 +	*e = &exports;
  	imp = i;
  	if ( !hRSA4096 ) {
  		// create context for private rsa keys
 @@ -238,7 +238,7 @@ int __cdecl rsa_get_hash(PBYTE pubKey, int pubKeyLen, PBYTE pubHash, int* pubHas  	Sent_NetLog("rsa_get_hash: %d", pubKeyLen);
  #endif
  	string sig;
 -	sig = hash(pubKey, pubKeyLen);
 +	sig = ::hash(pubKey, pubKeyLen);
  	*pubHashLen = sig.length();
  	if ( pubHash ) sig.copy((char*)pubHash, *pubHashLen);
 @@ -281,7 +281,7 @@ int __cdecl rsa_disconnect(HANDLE context) {  	PBYTE buffer=(PBYTE) alloca(RAND_SIZE);
  	GlobalRNG().GenerateBlock(buffer,RAND_SIZE);
 -	inject_msg(context,0xF0,encode_msg(0,p,hash(buffer,RAND_SIZE)));
 +	inject_msg(context,0xF0,encode_msg(0,p,::hash(buffer,RAND_SIZE)));
  	p->state = 0;
  	imp->rsa_notify(context,-3); // соединение разорвано вручную
 @@ -383,7 +383,7 @@ LPSTR __cdecl rsa_recv(HANDLE context, LPCSTR msg) {  		}
  		PBYTE buffer=(PBYTE) alloca(RAND_SIZE);
  		GlobalRNG().GenerateBlock(buffer,RAND_SIZE);
 -        	inject_msg(context,0x60,encode_msg(0,p,hash(buffer,RAND_SIZE)));
 +        	inject_msg(context,0x60,encode_msg(0,p,::hash(buffer,RAND_SIZE)));
  		p->state=7; p->time=0;
  		rsa_free_thread( p ); // удалим трэд и очередь сообщений
  		imp->rsa_notify(context,1);	// заебися, криптосессия установлена
 @@ -486,7 +486,7 @@ string encode_msg(short z, pRSADATA p, string& msg) {  	Sent_NetLog("encode_msg: %s", msg.c_str());
  #endif
  	string zlib = (z) ? cpp_zlibc(msg) : msg;
 -	string sig = hash(zlib);
 +	string sig = ::hash(zlib);
  	string ciphered;
  	try {
 @@ -517,7 +517,7 @@ string decode_msg(pRSADATA p, string& msg) {  		cbcDecryptor.Put((PBYTE)ciphered.data(),ciphered.length());
  		cbcDecryptor.MessageEnd();
 -		if ( sig == hash(zlib) ) {
 +		if ( sig == ::hash(zlib) ) {
  			unciphered = (t1==1) ? cpp_zlibd(zlib) : zlib;
  		}
  	}
 @@ -579,7 +579,7 @@ string gen_aes_key_iv(short m, pRSADATA p, pRSAPRIV r) {  void init_priv(pRSAPRIV r, string& priv) {
  	r->priv_k = priv;
 -	r->priv_s = hash(priv);
 +	r->priv_s = ::hash(priv);
  	int t;
  	string tmp, n, e, d, p, q, dp, dq, u;
 @@ -601,7 +601,7 @@ void init_priv(pRSAPRIV r, string& priv) {  	// if ( !empty );
  	r->pub_k = tlv(1,n)+tlv(2,e);
 -	r->pub_s = hash(r->pub_k);
 +	r->pub_s = ::hash(r->pub_k);
  	r->priv.Initialize(BinaryToInteger(n),BinaryToInteger(e),
  			   BinaryToInteger(d),BinaryToInteger(p),BinaryToInteger(q),
 @@ -612,7 +612,7 @@ void init_priv(pRSAPRIV r, string& priv) {  void init_pub(pRSADATA p, string& pub) {
  	p->pub_k = pub;
 -	p->pub_s = hash(pub);
 +	p->pub_s = ::hash(pub);
  	int t;
  	string tmp, n, e;
 @@ -733,7 +733,7 @@ int __cdecl rsa_recv_thread(HANDLE context, string& msg) {  	{
  		int features; string pub;
  		un_tlv(un_tlv(data,t[0],features),t[1],pub);
 -		string sig = hash(pub);
 +		string sig = ::hash(pub);
  		if ( !imp->rsa_check_pub(context,(PBYTE)pub.data(),pub.length(),(PBYTE)sig.data(),sig.length()) ) {
  			p->state=0; p->time=0;
  			null_msg(context,0x00,-type); // сессия разорвана по ошибке
 @@ -760,7 +760,7 @@ int __cdecl rsa_recv_thread(HANDLE context, string& msg) {  	{
  		int features; string pub;
  		un_tlv(un_tlv(data,t[0],features),t[1],pub);
 -		string sig = hash(pub);
 +		string sig = ::hash(pub);
  		if ( !imp->rsa_check_pub(context,(PBYTE)pub.data(),pub.length(),(PBYTE)sig.data(),sig.length()) ) {
  			p->state=0; p->time=0;
  			null_msg(context,0x00,-type); // сессия разорвана по ошибке
 @@ -780,7 +780,7 @@ int __cdecl rsa_recv_thread(HANDLE context, string& msg) {  	{
  		string pub;
  		un_tlv(data,t[0],pub);
 -		string sig = hash(pub);
 +		string sig = ::hash(pub);
  		if ( !imp->rsa_check_pub(context,(PBYTE)pub.data(),pub.length(),(PBYTE)sig.data(),sig.length()) ) {
  			p->state=0; p->time=0;
  			null_msg(context,0x00,-type); // сессия разорвана по ошибке
 @@ -809,7 +809,7 @@ int __cdecl rsa_recv_thread(HANDLE context, string& msg) {  		un_tlv(key,t[1],p->aes_v);
  		PBYTE buffer=(PBYTE) alloca(RAND_SIZE);
  		GlobalRNG().GenerateBlock(buffer,RAND_SIZE);
 -		inject_msg(context,0x50,encode_msg(0,p,hash(buffer,RAND_SIZE)));
 +		inject_msg(context,0x50,encode_msg(0, p, ::hash(buffer,RAND_SIZE)));
  		p->state=6;
  	} break;
 @@ -819,7 +819,7 @@ int __cdecl rsa_recv_thread(HANDLE context, string& msg) {  		int features; string pub,sha;
  		un_tlv(un_tlv(un_tlv(data,t[0],features),t[1],pub),t[2],sha);
  		if ( p->pub_k!=pub ) { // пришел новый паблик
 -			string sig = hash(pub);
 +			string sig = ::hash(pub);
  			if ( !imp->rsa_check_pub(context,(PBYTE)pub.data(),pub.length(),(PBYTE)sig.data(),sig.length()) ) {
  				p->state=0; p->time=0;
  				null_msg(context,0x00,-type); // сессия разорвана по ошибке
 @@ -959,7 +959,7 @@ int __cdecl rsa_export_keypair(short mode, LPSTR privKey, LPSTR pubKey, LPSTR pa  			return 0;
  		}
 -		priv = tlv(1,ciphered) + tlv(2,hash(ciphered));
 +		priv = tlv(1,ciphered) + tlv(2,::hash(ciphered));
  		priv = priv_beg + crlf + add_delim(base64encode(priv),crlf,65) + priv_end + crlf;
  		strcpy(privKey, priv.c_str());
 @@ -991,7 +991,7 @@ int __cdecl rsa_import_keypair(short mode, LPSTR privKey, LPSTR passPhrase) {  	    if ( found != string::npos ) {
  		priv = base64decode(priv.substr(0,found));
  		TLV k(priv);
 -		if ( k.exist(1) && k.exist(2) && hash(k.get(1)) == k.get(2) ) {
 +		if ( k.exist(1) && k.exist(2) && ::hash(k.get(1)) == k.get(2) ) {
  		    priv = k.get(1);
  		    string key = hash256(passPhrase);
 @@ -1061,7 +1061,7 @@ int __cdecl rsa_import_pubkey(HANDLE context, LPSTR pubKey) {  	    if ( found != string::npos ) {
  		pub = base64decode(pub.substr(0,found));
  		TLV k(pub);
 -		if ( k.exist(3) && k.exist(4) && hash(k.get(3)) == k.get(4) ) {
 +		if ( k.exist(3) && k.exist(4) && ::hash(k.get(3)) == k.get(4) ) {
  		    init_pub(p,k.get(3));
  		    return 1;
  		}
 diff --git a/plugins/CryptoPP/cpp_rsau.cpp b/plugins/CryptoPP/cpp_rsau.cpp index be8e499ed1..e9ad825dd0 100644 --- a/plugins/CryptoPP/cpp_rsau.cpp +++ b/plugins/CryptoPP/cpp_rsau.cpp @@ -103,7 +103,7 @@ int str2int(string& s) {  string hash(string& b)
  {
 -	return hash((PBYTE)b.data(),b.length());
 +	return ::hash((PBYTE)b.data(),b.length());
  }
 diff --git a/plugins/CryptoPP/cpp_rsau.h b/plugins/CryptoPP/cpp_rsau.h index ae41e64def..0e30629079 100644 --- a/plugins/CryptoPP/cpp_rsau.h +++ b/plugins/CryptoPP/cpp_rsau.h @@ -88,7 +88,7 @@ string hash256(LPSTR);  string hash256(PBYTE,int);
  Integer BinaryToInteger(const string&);
 -string	IntegerToBinary(const Integer&);
 +string  IntegerToBinary(const Integer&);
  AutoSeededRandomPool& GlobalRNG();
 diff --git a/plugins/CryptoPP/crypto/adhoc.cpp.copied b/plugins/CryptoPP/crypto/adhoc.cpp.copied deleted file mode 100644 index 56f3b36e27..0000000000 --- a/plugins/CryptoPP/crypto/adhoc.cpp.copied +++ /dev/null @@ -1 +0,0 @@ - 
 diff --git a/plugins/CryptoPP/crypto/cryptdll.dsp b/plugins/CryptoPP/crypto/cryptdll.dsp deleted file mode 100644 index 93625077e3..0000000000 --- a/plugins/CryptoPP/crypto/cryptdll.dsp +++ /dev/null @@ -1,561 +0,0 @@ -# Microsoft Developer Studio Project File - Name="cryptdll" - Package Owner=<4>
 -# Microsoft Developer Studio Generated Build File, Format Version 6.00
 -# ** DO NOT EDIT **
 -
 -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102
 -
 -CFG=cryptdll - Win32 Debug
 -!MESSAGE This is not a valid makefile. To build this project using NMAKE,
 -!MESSAGE use the Export Makefile command and run
 -!MESSAGE 
 -!MESSAGE NMAKE /f "cryptdll.mak".
 -!MESSAGE 
 -!MESSAGE You can specify a configuration when running NMAKE
 -!MESSAGE by defining the macro CFG on the command line. For example:
 -!MESSAGE 
 -!MESSAGE NMAKE /f "cryptdll.mak" CFG="cryptdll - Win32 Debug"
 -!MESSAGE 
 -!MESSAGE Possible choices for configuration are:
 -!MESSAGE 
 -!MESSAGE "cryptdll - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library")
 -!MESSAGE "cryptdll - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library")
 -!MESSAGE 
 -
 -# Begin Project
 -# PROP AllowPerConfigDependencies 0
 -# PROP Scc_ProjName ""
 -# PROP Scc_LocalPath ""
 -CPP=cl.exe
 -MTL=midl.exe
 -RSC=rc.exe
 -
 -!IF  "$(CFG)" == "cryptdll - Win32 Release"
 -
 -# PROP BASE Use_MFC 0
 -# PROP BASE Use_Debug_Libraries 0
 -# PROP BASE Output_Dir "cryptdll___Win32_Release"
 -# PROP BASE Intermediate_Dir "cryptdll___Win32_Release"
 -# PROP BASE Target_Dir ""
 -# PROP Use_MFC 0
 -# PROP Use_Debug_Libraries 0
 -# PROP Output_Dir "DLL_Release"
 -# PROP Intermediate_Dir "DLL_Release"
 -# PROP Ignore_Export_Lib 0
 -# PROP Target_Dir ""
 -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "CRYPTDLL_EXPORTS" /YX /FD /c
 -# ADD CPP /nologo /G5 /MT /W3 /GX /Zi /O1 /Ob2 /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "CRYPTOPP_EXPORTS" /D CRYPTOPP_ENABLE_COMPLIANCE_WITH_FIPS_140_2=1 /D "USE_PRECOMPILED_HEADERS" /Yu"pch.h" /FD /Zm200 /c
 -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32
 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32
 -# ADD BASE RSC /l 0x409 /d "NDEBUG"
 -# ADD RSC /l 0x409 /d "NDEBUG"
 -BSC32=bscmake.exe
 -# ADD BASE BSC32 /nologo
 -# ADD BSC32 /nologo
 -LINK32=link.exe
 -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /machine:I386
 -# ADD LINK32 advapi32.lib /nologo /base:"0x42900000" /dll /map /debug /machine:I386 /out:"DLL_Release/cryptopp.dll" /opt:ref
 -# SUBTRACT LINK32 /pdb:none
 -# Begin Custom Build
 -OutDir=.\DLL_Release
 -TargetPath=.\DLL_Release\cryptopp.dll
 -InputPath=.\DLL_Release\cryptopp.dll
 -SOURCE="$(InputPath)"
 -
 -"$(OutDir)\cryptopp.mac.done" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
 -	CTRelease\cryptest mac_dll $(TargetPath) 
 -	echo mac done > $(OutDir)\cryptopp.mac.done 
 -	
 -# End Custom Build
 -
 -!ELSEIF  "$(CFG)" == "cryptdll - Win32 Debug"
 -
 -# PROP BASE Use_MFC 0
 -# PROP BASE Use_Debug_Libraries 1
 -# PROP BASE Output_Dir "cryptdll___Win32_Debug"
 -# PROP BASE Intermediate_Dir "cryptdll___Win32_Debug"
 -# PROP BASE Target_Dir ""
 -# PROP Use_MFC 0
 -# PROP Use_Debug_Libraries 1
 -# PROP Output_Dir "DLL_Debug"
 -# PROP Intermediate_Dir "DLL_Debug"
 -# PROP Ignore_Export_Lib 0
 -# PROP Target_Dir ""
 -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "CRYPTDLL_EXPORTS" /YX /FD /GZ /c
 -# ADD CPP /nologo /G5 /MTd /W3 /Gm /GX /Zi /Oi /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "CRYPTOPP_EXPORTS" /D CRYPTOPP_ENABLE_COMPLIANCE_WITH_FIPS_140_2=1 /D "USE_PRECOMPILED_HEADERS" /Yu"pch.h" /FD /GZ /Zm200 /c
 -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32
 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32
 -# ADD BASE RSC /l 0x409 /d "_DEBUG"
 -# ADD RSC /l 0x409 /d "_DEBUG"
 -BSC32=bscmake.exe
 -# ADD BASE BSC32 /nologo
 -# ADD BSC32 /nologo
 -LINK32=link.exe
 -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept
 -# ADD LINK32 advapi32.lib /nologo /base:"0x42900000" /dll /incremental:no /debug /machine:I386 /out:"DLL_Debug/cryptopp.dll" /opt:ref
 -# SUBTRACT LINK32 /pdb:none
 -# Begin Custom Build
 -OutDir=.\DLL_Debug
 -TargetPath=.\DLL_Debug\cryptopp.dll
 -InputPath=.\DLL_Debug\cryptopp.dll
 -SOURCE="$(InputPath)"
 -
 -"$(OutDir)\cryptopp.mac.done" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
 -	CTDebug\cryptest mac_dll $(TargetPath) 
 -	echo mac done > $(OutDir)\cryptopp.mac.done 
 -	
 -# End Custom Build
 -
 -!ENDIF 
 -
 -# Begin Target
 -
 -# Name "cryptdll - Win32 Release"
 -# Name "cryptdll - Win32 Debug"
 -# Begin Group "Source Files"
 -
 -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
 -# Begin Source File
 -
 -SOURCE=.\algebra.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\algparam.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\asn.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\basecode.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\cbcmac.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\channels.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\cpu.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\cryptlib.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\des.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\dessp.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\dh.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\dll.cpp
 -# SUBTRACT CPP /YX /Yc /Yu
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\dsa.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\ec2n.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\eccrypto.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\ecp.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\emsa2.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\eprecomp.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\files.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\filters.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\fips140.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\fipstest.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\gf2n.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\gfpcrypt.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\hex.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\hmac.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\hrtimer.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\integer.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\iterhash.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\misc.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\modes.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\mqueue.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\nbtheory.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\oaep.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\osrng.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\pch.cpp
 -# ADD CPP /Yc"pch.h"
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\pkcspad.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\pssr.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\pubkey.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\queue.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\randpool.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\rdtables.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\rijndael.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\rng.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\rsa.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\rw.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\sha.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\simple.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\skipjack.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\strciphr.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\trdlocal.cpp
 -# End Source File
 -# End Group
 -# Begin Group "Header Files"
 -
 -# PROP Default_Filter ".h"
 -# Begin Source File
 -
 -SOURCE=.\aes.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\algebra.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\algparam.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\argnames.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\asn.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\basecode.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\cbcmac.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\channels.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\config.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\cryptlib.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\des.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\dh.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\dll.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\dsa.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\ec2n.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\eccrypto.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\ecp.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\eprecomp.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\files.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\filters.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\fips140.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\fltrimpl.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\gf2n.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\gfpcrypt.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\hex.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\hmac.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\integer.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\iterhash.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\mdc.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\misc.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\modarith.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\modes.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\modexppc.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\mqueue.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\mqv.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\nbtheory.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\oaep.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\oids.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\osrng.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\pch.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\pkcspad.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\pubkey.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\queue.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\randpool.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\rijndael.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\rng.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\rsa.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\secblock.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\seckey.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\sha.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\simple.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\skipjack.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\smartptr.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\stdcpp.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\strciphr.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\trdlocal.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\words.h
 -# End Source File
 -# End Group
 -# Begin Source File
 -
 -SOURCE=.\cryptopp.rc
 -# End Source File
 -# End Target
 -# End Project
 diff --git a/plugins/CryptoPP/crypto/cryptest.dsp b/plugins/CryptoPP/crypto/cryptest.dsp deleted file mode 100644 index e384bc9410..0000000000 --- a/plugins/CryptoPP/crypto/cryptest.dsp +++ /dev/null @@ -1,431 +0,0 @@ -# Microsoft Developer Studio Project File - Name="cryptest" - Package Owner=<4>
 -# Microsoft Developer Studio Generated Build File, Format Version 6.00
 -# ** DO NOT EDIT **
 -
 -# TARGTYPE "Win32 (x86) Console Application" 0x0103
 -
 -CFG=cryptest - Win32 Debug
 -!MESSAGE This is not a valid makefile. To build this project using NMAKE,
 -!MESSAGE use the Export Makefile command and run
 -!MESSAGE 
 -!MESSAGE NMAKE /f "cryptest.mak".
 -!MESSAGE 
 -!MESSAGE You can specify a configuration when running NMAKE
 -!MESSAGE by defining the macro CFG on the command line. For example:
 -!MESSAGE 
 -!MESSAGE NMAKE /f "cryptest.mak" CFG="cryptest - Win32 Debug"
 -!MESSAGE 
 -!MESSAGE Possible choices for configuration are:
 -!MESSAGE 
 -!MESSAGE "cryptest - Win32 DLL-Import Release" (based on "Win32 (x86) Console Application")
 -!MESSAGE "cryptest - Win32 DLL-Import Debug" (based on "Win32 (x86) Console Application")
 -!MESSAGE "cryptest - Win32 Release" (based on "Win32 (x86) Console Application")
 -!MESSAGE "cryptest - Win32 Debug" (based on "Win32 (x86) Console Application")
 -!MESSAGE 
 -
 -# Begin Project
 -# PROP AllowPerConfigDependencies 0
 -# PROP Scc_ProjName ""
 -# PROP Scc_LocalPath ""
 -CPP=cl.exe
 -RSC=rc.exe
 -
 -!IF  "$(CFG)" == "cryptest - Win32 DLL-Import Release"
 -
 -# PROP BASE Use_MFC 0
 -# PROP BASE Use_Debug_Libraries 0
 -# PROP BASE Output_Dir "cryptest___Win32_FIPS_140_Release"
 -# PROP BASE Intermediate_Dir "cryptest___Win32_FIPS_140_Release"
 -# PROP BASE Ignore_Export_Lib 0
 -# PROP BASE Target_Dir ""
 -# PROP Use_MFC 0
 -# PROP Use_Debug_Libraries 0
 -# PROP Output_Dir "CT_DLL_Import_Release"
 -# PROP Intermediate_Dir "CT_DLL_Import_Release"
 -# PROP Ignore_Export_Lib 0
 -# PROP Target_Dir ""
 -# ADD BASE CPP /nologo /G5 /Gz /MT /W3 /GX /Zi /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /Zm200 /c
 -# ADD CPP /nologo /G5 /Gz /MT /W3 /GX /Zi /O1 /Ob2 /D "NDEBUG" /D "CRYPTOPP_IMPORTS" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /YX /FD /Zm400 /c
 -# ADD BASE RSC /l 0x409 /d "NDEBUG"
 -# ADD RSC /l 0x409 /d "NDEBUG"
 -BSC32=bscmake.exe
 -# ADD BASE BSC32 /nologo
 -# ADD BSC32 /nologo
 -LINK32=link.exe
 -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib Ws2_32.lib /nologo /subsystem:console /debug /machine:I386 /OPT:NOWIN98
 -# ADD LINK32 Ws2_32.lib /nologo /subsystem:console /debug /machine:I386 /out:"DLL_Release/cryptest.exe" /libpath:"DLL_Release" /OPT:NOWIN98 /OPT:REF /OPT:ICF
 -# SUBTRACT LINK32 /pdb:none /incremental:yes
 -# Begin Special Build Tool
 -SOURCE="$(InputPath)"
 -PreLink_Cmds=echo This configuration requires cryptopp.dll.	echo You can build it yourself using the cryptdll project, or	echo obtain a pre-built, FIPS 140-2 validated DLL. If you build it yourself	echo the resulting DLL will not be considered FIPS validated	echo unless it undergoes FIPS validation.
 -# End Special Build Tool
 -
 -!ELSEIF  "$(CFG)" == "cryptest - Win32 DLL-Import Debug"
 -
 -# PROP BASE Use_MFC 0
 -# PROP BASE Use_Debug_Libraries 1
 -# PROP BASE Output_Dir "cryptest___Win32_FIPS_140_Debug"
 -# PROP BASE Intermediate_Dir "cryptest___Win32_FIPS_140_Debug"
 -# PROP BASE Ignore_Export_Lib 0
 -# PROP BASE Target_Dir ""
 -# PROP Use_MFC 0
 -# PROP Use_Debug_Libraries 1
 -# PROP Output_Dir "CT_DLL_Import_Debug"
 -# PROP Intermediate_Dir "CT_DLL_Import_Debug"
 -# PROP Ignore_Export_Lib 0
 -# PROP Target_Dir ""
 -# ADD BASE CPP /nologo /MTd /W3 /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /Zm200 /c
 -# ADD CPP /nologo /G5 /Gz /MTd /W3 /GX /Zi /Oi /D "_DEBUG" /D "CRYPTOPP_IMPORTS" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /YX /FD /Zm400 /c
 -# ADD BASE RSC /l 0x409 /d "_DEBUG"
 -# ADD RSC /l 0x409 /d "_DEBUG"
 -BSC32=bscmake.exe
 -# ADD BASE BSC32 /nologo
 -# ADD BSC32 /nologo
 -LINK32=link.exe
 -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib Ws2_32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept /OPT:NOWIN98
 -# ADD LINK32 Ws2_32.lib /nologo /subsystem:console /debug /machine:I386 /out:"DLL_Debug/cryptest.exe" /pdbtype:sept /libpath:"DLL_Debug" /OPT:NOWIN98
 -# Begin Special Build Tool
 -SOURCE="$(InputPath)"
 -PreLink_Cmds=echo This configuration requires cryptopp.dll.	echo You can build it yourself using the cryptdll project, or	echo obtain a pre-built, FIPS 140-2 validated DLL. If you build it yourself	echo the resulting DLL will not be considered FIPS validated	echo unless it undergoes FIPS validation.
 -# End Special Build Tool
 -
 -!ELSEIF  "$(CFG)" == "cryptest - Win32 Release"
 -
 -# PROP BASE Use_MFC 0
 -# PROP BASE Use_Debug_Libraries 0
 -# PROP BASE Output_Dir "cryptes0"
 -# PROP BASE Intermediate_Dir "cryptes0"
 -# PROP BASE Target_Dir ""
 -# PROP Use_MFC 0
 -# PROP Use_Debug_Libraries 0
 -# PROP Output_Dir "CTRelease"
 -# PROP Intermediate_Dir "CTRelease"
 -# PROP Ignore_Export_Lib 0
 -# PROP Target_Dir ""
 -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
 -# ADD CPP /nologo /MT /W3 /GX /Zi /O1 /Ob2 /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "WIN32" /YX /FD /Zm400 /c
 -# ADD BASE RSC /l 0x409 /d "NDEBUG"
 -# ADD RSC /l 0x409 /d "NDEBUG"
 -BSC32=bscmake.exe
 -# ADD BASE BSC32 /nologo
 -# ADD BSC32 /nologo
 -LINK32=link.exe
 -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
 -# ADD LINK32 advapi32.lib Ws2_32.lib /nologo /subsystem:console /map /debug /machine:I386 /OPT:NOWIN98 /OPT:REF /OPT:ICF
 -# SUBTRACT LINK32 /pdb:none
 -
 -!ELSEIF  "$(CFG)" == "cryptest - Win32 Debug"
 -
 -# PROP BASE Use_MFC 0
 -# PROP BASE Use_Debug_Libraries 1
 -# PROP BASE Output_Dir "cryptes1"
 -# PROP BASE Intermediate_Dir "cryptes1"
 -# PROP BASE Target_Dir ""
 -# PROP Use_MFC 0
 -# PROP Use_Debug_Libraries 1
 -# PROP Output_Dir "CTDebug"
 -# PROP Intermediate_Dir "CTDebug"
 -# PROP Ignore_Export_Lib 0
 -# PROP Target_Dir ""
 -# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
 -# ADD CPP /nologo /MTd /W3 /GX /Zi /Oi /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /D "WIN32" /YX /FD /Zm400 /c
 -# ADD BASE RSC /l 0x409 /d "_DEBUG"
 -# ADD RSC /l 0x409 /d "_DEBUG"
 -BSC32=bscmake.exe
 -# ADD BASE BSC32 /nologo
 -# ADD BSC32 /nologo
 -LINK32=link.exe
 -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
 -# ADD LINK32 advapi32.lib Ws2_32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept /OPT:NOWIN98
 -# SUBTRACT LINK32 /pdb:none
 -
 -!ENDIF 
 -
 -# Begin Target
 -
 -# Name "cryptest - Win32 DLL-Import Release"
 -# Name "cryptest - Win32 DLL-Import Debug"
 -# Name "cryptest - Win32 Release"
 -# Name "cryptest - Win32 Debug"
 -# Begin Group "Test Data"
 -
 -# PROP Default_Filter ".dat"
 -# Begin Source File
 -
 -SOURCE=.\3desval.dat
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\3wayval.dat
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\camellia.dat
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\cast128v.dat
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\cast256v.dat
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\descert.dat
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\dh1024.dat
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\dh2048.dat
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\diamond.dat
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\dsa1024.dat
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\dsa1024b.dat
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\dsa512.dat
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\elgc1024.dat
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\esig1023.dat
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\esig1536.dat
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\esig2046.dat
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\gostval.dat
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\havalcer.dat
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\ideaval.dat
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\luc1024.dat
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\luc2048.dat
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\lucc1024.dat
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\lucc512.dat
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\lucd1024.dat
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\lucd512.dat
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\lucs1024.dat
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\lucs512.dat
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\marsval.dat
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\mqv1024.dat
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\mqv2048.dat
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\nr1024.dat
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\nr2048.dat
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\rabi1024.dat
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\rabi2048.dat
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\rc2val.dat
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\rc5val.dat
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\rc6val.dat
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\rijndael.dat
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\rsa1024.dat
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\rsa2048.dat
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\rsa400pb.dat
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\rsa400pv.dat
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\rsa512a.dat
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\rw1024.dat
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\rw2048.dat
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\saferval.dat
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\serpentv.dat
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\shacal2v.dat
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\sharkval.dat
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\skipjack.dat
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\squareva.dat
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\twofishv.dat
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\usage.dat
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\xtrdh171.dat
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\xtrdh342.dat
 -# End Source File
 -# End Group
 -# Begin Group "Source Code"
 -
 -# PROP Default_Filter ".cpp;.h"
 -# Begin Source File
 -
 -SOURCE=.\adhoc.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\bench.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\bench.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\bench2.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\datatest.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\dlltest.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\fipsalgt.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\regtest.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\test.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\validat1.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\validat2.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\validat3.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\validate.h
 -# End Source File
 -# End Group
 -# End Target
 -# End Project
 diff --git a/plugins/CryptoPP/crypto/cryptest.dsw b/plugins/CryptoPP/crypto/cryptest.dsw deleted file mode 100644 index a2f14118cf..0000000000 --- a/plugins/CryptoPP/crypto/cryptest.dsw +++ /dev/null @@ -1,74 +0,0 @@ -Microsoft Developer Studio Workspace File, Format Version 6.00
 -# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
 -
 -###############################################################################
 -
 -Project: "cryptdll"=.\cryptdll.dsp - Package Owner=<4>
 -
 -Package=<5>
 -{{{
 -}}}
 -
 -Package=<4>
 -{{{
 -    Begin Project Dependency
 -    Project_Dep_Name cryptest
 -    End Project Dependency
 -}}}
 -
 -###############################################################################
 -
 -Project: "cryptest"=.\cryptest.dsp - Package Owner=<4>
 -
 -Package=<5>
 -{{{
 -}}}
 -
 -Package=<4>
 -{{{
 -    Begin Project Dependency
 -    Project_Dep_Name cryptlib
 -    End Project Dependency
 -}}}
 -
 -###############################################################################
 -
 -Project: "cryptlib"=.\cryptlib.dsp - Package Owner=<4>
 -
 -Package=<5>
 -{{{
 -}}}
 -
 -Package=<4>
 -{{{
 -}}}
 -
 -###############################################################################
 -
 -Project: "dlltest"=.\dlltest.dsp - Package Owner=<4>
 -
 -Package=<5>
 -{{{
 -}}}
 -
 -Package=<4>
 -{{{
 -    Begin Project Dependency
 -    Project_Dep_Name cryptdll
 -    End Project Dependency
 -}}}
 -
 -###############################################################################
 -
 -Global:
 -
 -Package=<5>
 -{{{
 -}}}
 -
 -Package=<3>
 -{{{
 -}}}
 -
 -###############################################################################
 -
 diff --git a/plugins/CryptoPP/crypto/cryptlib.dep b/plugins/CryptoPP/crypto/cryptlib.dep deleted file mode 100644 index 70fd5eac7b..0000000000 --- a/plugins/CryptoPP/crypto/cryptlib.dep +++ /dev/null @@ -1,1968 +0,0 @@ -# Microsoft Developer Studio Generated Dependency File, included by cryptlib.mak
 -
 -.\3way.cpp : \
 -	".\3way.h"\
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\misc.h"\
 -	".\pch.h"\
 -	".\secblock.h"\
 -	".\seckey.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	
 -
 -!IF  "$(CFG)" == "cryptlib - Win32 DLL-Import Release"
 -
 -!ELSEIF  "$(CFG)" == "cryptlib - Win32 DLL-Import Debug"
 -
 -!ELSEIF  "$(CFG)" == "cryptlib - Win32 Release"
 -
 -!ELSEIF  "$(CFG)" == "cryptlib - Win32 Debug"
 -
 -!ENDIF 
 -
 -.\adler32.cpp : \
 -	".\adler32.h"\
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\misc.h"\
 -	".\pch.h"\
 -	".\secblock.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	
 -
 -.\algebra.cpp : \
 -	".\algebra.h"\
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\integer.h"\
 -	".\misc.h"\
 -	".\pch.h"\
 -	".\secblock.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	
 -
 -.\algparam.cpp : \
 -	".\algparam.h"\
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\misc.h"\
 -	".\pch.h"\
 -	".\secblock.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	
 -
 -.\arc4.cpp : \
 -	".\arc4.h"\
 -	".\argnames.h"\
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\misc.h"\
 -	".\pch.h"\
 -	".\secblock.h"\
 -	".\seckey.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	".\strciphr.h"\
 -	
 -
 -.\asn.cpp : \
 -	".\algparam.h"\
 -	".\asn.h"\
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\filters.h"\
 -	".\misc.h"\
 -	".\pch.h"\
 -	".\queue.h"\
 -	".\secblock.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	
 -
 -.\base32.cpp : \
 -	".\algparam.h"\
 -	".\argnames.h"\
 -	".\base32.h"\
 -	".\basecode.h"\
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\filters.h"\
 -	".\misc.h"\
 -	".\pch.h"\
 -	".\queue.h"\
 -	".\secblock.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	
 -
 -.\base64.cpp : \
 -	".\algparam.h"\
 -	".\argnames.h"\
 -	".\base64.h"\
 -	".\basecode.h"\
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\filters.h"\
 -	".\misc.h"\
 -	".\pch.h"\
 -	".\queue.h"\
 -	".\secblock.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	
 -
 -.\basecode.cpp : \
 -	".\algparam.h"\
 -	".\argnames.h"\
 -	".\basecode.h"\
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\filters.h"\
 -	".\fltrimpl.h"\
 -	".\misc.h"\
 -	".\pch.h"\
 -	".\queue.h"\
 -	".\secblock.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	
 -
 -.\bfinit.cpp : \
 -	".\blowfish.h"\
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\misc.h"\
 -	".\pch.h"\
 -	".\secblock.h"\
 -	".\seckey.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	
 -
 -.\blowfish.cpp : \
 -	".\blowfish.h"\
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\misc.h"\
 -	".\pch.h"\
 -	".\secblock.h"\
 -	".\seckey.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	
 -
 -.\blumshub.cpp : \
 -	".\algebra.h"\
 -	".\blumshub.h"\
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\integer.h"\
 -	".\misc.h"\
 -	".\modarith.h"\
 -	".\pch.h"\
 -	".\secblock.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	
 -
 -.\camellia.cpp : \
 -	".\camellia.h"\
 -	".\config.h"\
 -	".\cpu.h"\
 -	".\cryptlib.h"\
 -	".\misc.h"\
 -	".\pch.h"\
 -	".\secblock.h"\
 -	".\seckey.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	
 -
 -.\cast.cpp : \
 -	".\cast.h"\
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\misc.h"\
 -	".\pch.h"\
 -	".\secblock.h"\
 -	".\seckey.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	
 -
 -.\casts.cpp : \
 -	".\cast.h"\
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\misc.h"\
 -	".\pch.h"\
 -	".\secblock.h"\
 -	".\seckey.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	
 -
 -.\cbcmac.cpp : \
 -	".\cbcmac.h"\
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\misc.h"\
 -	".\pch.h"\
 -	".\secblock.h"\
 -	".\seckey.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	
 -
 -.\channels.cpp : \
 -	".\channels.h"\
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\misc.h"\
 -	".\pch.h"\
 -	".\secblock.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	
 -
 -.\cpu.cpp : \
 -	".\config.h"\
 -	".\cpu.h"\
 -	".\cryptlib.h"\
 -	".\misc.h"\
 -	".\pch.h"\
 -	".\secblock.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	
 -
 -.\crc.cpp : \
 -	".\config.h"\
 -	".\crc.h"\
 -	".\cryptlib.h"\
 -	".\misc.h"\
 -	".\pch.h"\
 -	".\secblock.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	
 -
 -.\cryptlib.cpp : \
 -	".\aes.h"\
 -	".\algparam.h"\
 -	".\argnames.h"\
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\filters.h"\
 -	".\fips140.h"\
 -	".\fltrimpl.h"\
 -	".\iterhash.h"\
 -	".\misc.h"\
 -	".\osrng.h"\
 -	".\pch.h"\
 -	".\queue.h"\
 -	".\randpool.h"\
 -	".\rijndael.h"\
 -	".\rng.h"\
 -	".\secblock.h"\
 -	".\seckey.h"\
 -	".\sha.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	".\trdlocal.h"\
 -	
 -
 -.\default.cpp : \
 -	".\algparam.h"\
 -	".\argnames.h"\
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\default.h"\
 -	".\des.h"\
 -	".\filters.h"\
 -	".\hmac.h"\
 -	".\iterhash.h"\
 -	".\misc.h"\
 -	".\modes.h"\
 -	".\pch.h"\
 -	".\queue.h"\
 -	".\secblock.h"\
 -	".\seckey.h"\
 -	".\sha.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	".\strciphr.h"\
 -	
 -
 -.\des.cpp : \
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\des.h"\
 -	".\misc.h"\
 -	".\pch.h"\
 -	".\secblock.h"\
 -	".\seckey.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	
 -
 -.\dessp.cpp : \
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\des.h"\
 -	".\misc.h"\
 -	".\pch.h"\
 -	".\secblock.h"\
 -	".\seckey.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	
 -
 -.\dh.cpp : \
 -	".\algebra.h"\
 -	".\algparam.h"\
 -	".\argnames.h"\
 -	".\asn.h"\
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\dh.h"\
 -	".\eprecomp.h"\
 -	".\filters.h"\
 -	".\fips140.h"\
 -	".\gfpcrypt.h"\
 -	".\hmac.h"\
 -	".\integer.h"\
 -	".\iterhash.h"\
 -	".\misc.h"\
 -	".\modarith.h"\
 -	".\modexppc.h"\
 -	".\pch.h"\
 -	".\pubkey.h"\
 -	".\queue.h"\
 -	".\secblock.h"\
 -	".\seckey.h"\
 -	".\sha.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	
 -
 -.\dh2.cpp : \
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\dh2.h"\
 -	".\misc.h"\
 -	".\pch.h"\
 -	".\secblock.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	
 -
 -.\dll.cpp : \
 -	".\algparam.h"\
 -	".\argnames.h"\
 -	".\basecode.h"\
 -	".\config.h"\
 -	".\emsa2.h"\
 -	".\filters.h"\
 -	".\hex.h"\
 -	".\hmac.h"\
 -	".\mqueue.h"\
 -	".\oaep.h"\
 -	".\secblock.h"\
 -	".\sha.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	".\strciphr.cpp"\
 -	".\strciphr.h"\
 -	".\trdlocal.h"\
 -	
 -
 -.\dsa.cpp : \
 -	".\algebra.h"\
 -	".\algparam.h"\
 -	".\argnames.h"\
 -	".\asn.h"\
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\dsa.h"\
 -	".\eprecomp.h"\
 -	".\filters.h"\
 -	".\fips140.h"\
 -	".\gfpcrypt.h"\
 -	".\hmac.h"\
 -	".\integer.h"\
 -	".\iterhash.h"\
 -	".\misc.h"\
 -	".\modarith.h"\
 -	".\modexppc.h"\
 -	".\nbtheory.h"\
 -	".\pch.h"\
 -	".\pubkey.h"\
 -	".\queue.h"\
 -	".\secblock.h"\
 -	".\seckey.h"\
 -	".\sha.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	
 -
 -.\ec2n.cpp : \
 -	".\algebra.cpp"\
 -	".\algebra.h"\
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\integer.h"\
 -	".\pch.h"\
 -	".\secblock.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	
 -
 -.\eccrypto.cpp : \
 -	".\algebra.h"\
 -	".\algparam.h"\
 -	".\argnames.h"\
 -	".\asn.h"\
 -	".\basecode.h"\
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\dh.h"\
 -	".\ec2n.h"\
 -	".\eccrypto.h"\
 -	".\ecp.h"\
 -	".\eprecomp.h"\
 -	".\filters.h"\
 -	".\fips140.h"\
 -	".\gf2n.h"\
 -	".\gfpcrypt.h"\
 -	".\hex.h"\
 -	".\hmac.h"\
 -	".\integer.h"\
 -	".\iterhash.h"\
 -	".\misc.h"\
 -	".\modarith.h"\
 -	".\modexppc.h"\
 -	".\mqv.h"\
 -	".\nbtheory.h"\
 -	".\oids.h"\
 -	".\pch.h"\
 -	".\pubkey.h"\
 -	".\queue.h"\
 -	".\secblock.h"\
 -	".\seckey.h"\
 -	".\sha.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	
 -
 -.\ecp.cpp : \
 -	".\algebra.cpp"\
 -	".\algebra.h"\
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\integer.h"\
 -	".\pch.h"\
 -	".\secblock.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	
 -
 -.\elgamal.cpp : \
 -	".\algebra.h"\
 -	".\algparam.h"\
 -	".\argnames.h"\
 -	".\asn.h"\
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\dsa.h"\
 -	".\elgamal.h"\
 -	".\eprecomp.h"\
 -	".\filters.h"\
 -	".\fips140.h"\
 -	".\gfpcrypt.h"\
 -	".\hmac.h"\
 -	".\integer.h"\
 -	".\iterhash.h"\
 -	".\misc.h"\
 -	".\modarith.h"\
 -	".\modexppc.h"\
 -	".\nbtheory.h"\
 -	".\pch.h"\
 -	".\pubkey.h"\
 -	".\queue.h"\
 -	".\secblock.h"\
 -	".\seckey.h"\
 -	".\sha.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	
 -
 -.\emsa2.cpp : \
 -	".\algebra.h"\
 -	".\algparam.h"\
 -	".\argnames.h"\
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\emsa2.h"\
 -	".\eprecomp.h"\
 -	".\filters.h"\
 -	".\fips140.h"\
 -	".\integer.h"\
 -	".\misc.h"\
 -	".\modarith.h"\
 -	".\pch.h"\
 -	".\pubkey.h"\
 -	".\queue.h"\
 -	".\secblock.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	
 -
 -.\eprecomp.cpp : \
 -	".\algebra.h"\
 -	".\algparam.h"\
 -	".\asn.h"\
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\eprecomp.h"\
 -	".\filters.h"\
 -	".\integer.h"\
 -	".\misc.h"\
 -	".\pch.h"\
 -	".\queue.h"\
 -	".\secblock.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	
 -
 -.\esign.cpp : \
 -	".\algebra.h"\
 -	".\algparam.h"\
 -	".\argnames.h"\
 -	".\asn.h"\
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\eprecomp.h"\
 -	".\esign.h"\
 -	".\filters.h"\
 -	".\fips140.h"\
 -	".\integer.h"\
 -	".\iterhash.h"\
 -	".\misc.h"\
 -	".\modarith.h"\
 -	".\nbtheory.h"\
 -	".\pch.h"\
 -	".\pubkey.h"\
 -	".\queue.h"\
 -	".\secblock.h"\
 -	".\sha.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	
 -
 -.\files.cpp : \
 -	".\algparam.h"\
 -	".\argnames.h"\
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\files.h"\
 -	".\filters.h"\
 -	".\misc.h"\
 -	".\pch.h"\
 -	".\queue.h"\
 -	".\secblock.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	
 -
 -.\filters.cpp : \
 -	".\algparam.h"\
 -	".\argnames.h"\
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\filters.h"\
 -	".\fltrimpl.h"\
 -	".\misc.h"\
 -	".\mqueue.h"\
 -	".\pch.h"\
 -	".\queue.h"\
 -	".\secblock.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	
 -
 -.\fips140.cpp : \
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\fips140.h"\
 -	".\misc.h"\
 -	".\pch.h"\
 -	".\secblock.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	".\trdlocal.h"\
 -	
 -
 -.\fipstest.cpp : \
 -	".\aes.h"\
 -	".\algebra.h"\
 -	".\algparam.h"\
 -	".\argnames.h"\
 -	".\asn.h"\
 -	".\basecode.h"\
 -	".\cbcmac.h"\
 -	".\channels.h"\
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\des.h"\
 -	".\dh.h"\
 -	".\dll.h"\
 -	".\dsa.h"\
 -	".\ec2n.h"\
 -	".\eccrypto.h"\
 -	".\ecp.h"\
 -	".\emsa2.h"\
 -	".\eprecomp.h"\
 -	".\files.h"\
 -	".\filters.h"\
 -	".\fips140.h"\
 -	".\gf2n.h"\
 -	".\gfpcrypt.h"\
 -	".\hex.h"\
 -	".\hmac.h"\
 -	".\integer.h"\
 -	".\iterhash.h"\
 -	".\misc.h"\
 -	".\modarith.h"\
 -	".\modes.h"\
 -	".\modexppc.h"\
 -	".\mqueue.h"\
 -	".\mqv.h"\
 -	".\nbtheory.h"\
 -	".\oaep.h"\
 -	".\osrng.h"\
 -	".\pch.h"\
 -	".\pkcspad.h"\
 -	".\pssr.h"\
 -	".\pubkey.h"\
 -	".\queue.h"\
 -	".\randpool.h"\
 -	".\rijndael.h"\
 -	".\rng.h"\
 -	".\rsa.h"\
 -	".\rw.h"\
 -	".\secblock.h"\
 -	".\seckey.h"\
 -	".\sha.h"\
 -	".\simple.h"\
 -	".\skipjack.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	".\strciphr.h"\
 -	".\trdlocal.h"\
 -	
 -
 -.\gf256.cpp : \
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\gf256.h"\
 -	".\misc.h"\
 -	".\pch.h"\
 -	".\secblock.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	
 -
 -.\gf2_32.cpp : \
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\gf2_32.h"\
 -	".\misc.h"\
 -	".\pch.h"\
 -	".\secblock.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	
 -
 -.\gf2n.cpp : \
 -	".\algebra.h"\
 -	".\algparam.h"\
 -	".\asn.h"\
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\filters.h"\
 -	".\gf2n.h"\
 -	".\misc.h"\
 -	".\oids.h"\
 -	".\pch.h"\
 -	".\queue.h"\
 -	".\randpool.h"\
 -	".\secblock.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	".\words.h"\
 -	
 -
 -.\gfpcrypt.cpp : \
 -	".\algebra.h"\
 -	".\algparam.h"\
 -	".\argnames.h"\
 -	".\asn.h"\
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\eprecomp.h"\
 -	".\filters.h"\
 -	".\fips140.h"\
 -	".\gfpcrypt.h"\
 -	".\hmac.h"\
 -	".\integer.h"\
 -	".\iterhash.h"\
 -	".\misc.h"\
 -	".\modarith.h"\
 -	".\modexppc.h"\
 -	".\nbtheory.h"\
 -	".\oids.h"\
 -	".\pch.h"\
 -	".\pubkey.h"\
 -	".\queue.h"\
 -	".\secblock.h"\
 -	".\seckey.h"\
 -	".\sha.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	
 -
 -.\gost.cpp : \
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\gost.h"\
 -	".\misc.h"\
 -	".\pch.h"\
 -	".\secblock.h"\
 -	".\seckey.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	
 -
 -.\gzip.cpp : \
 -	".\algparam.h"\
 -	".\config.h"\
 -	".\crc.h"\
 -	".\cryptlib.h"\
 -	".\filters.h"\
 -	".\gzip.h"\
 -	".\misc.h"\
 -	".\pch.h"\
 -	".\queue.h"\
 -	".\secblock.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	".\zdeflate.h"\
 -	".\zinflate.h"\
 -	
 -
 -.\hex.cpp : \
 -	".\algparam.h"\
 -	".\argnames.h"\
 -	".\basecode.h"\
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\filters.h"\
 -	".\hex.h"\
 -	".\misc.h"\
 -	".\pch.h"\
 -	".\queue.h"\
 -	".\secblock.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	
 -
 -.\hmac.cpp : \
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\hmac.h"\
 -	".\misc.h"\
 -	".\pch.h"\
 -	".\secblock.h"\
 -	".\seckey.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	
 -
 -.\hrtimer.cpp : \
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\hrtimer.h"\
 -	".\misc.h"\
 -	".\pch.h"\
 -	".\secblock.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	
 -
 -.\ida.cpp : \
 -	".\algebra.h"\
 -	".\algparam.h"\
 -	".\channels.h"\
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\filters.h"\
 -	".\gf2_32.h"\
 -	".\ida.h"\
 -	".\misc.h"\
 -	".\mqueue.h"\
 -	".\pch.h"\
 -	".\polynomi.cpp"\
 -	".\polynomi.h"\
 -	".\queue.h"\
 -	".\secblock.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	
 -
 -.\idea.cpp : \
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\idea.h"\
 -	".\misc.h"\
 -	".\pch.h"\
 -	".\secblock.h"\
 -	".\seckey.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	
 -
 -.\integer.cpp : \
 -	".\algebra.h"\
 -	".\algparam.h"\
 -	".\argnames.h"\
 -	".\asn.h"\
 -	".\config.h"\
 -	".\cpu.h"\
 -	".\cryptlib.h"\
 -	".\eprecomp.h"\
 -	".\filters.h"\
 -	".\fips140.h"\
 -	".\integer.h"\
 -	".\iterhash.h"\
 -	".\misc.h"\
 -	".\modarith.h"\
 -	".\nbtheory.h"\
 -	".\oids.h"\
 -	".\pch.h"\
 -	".\pubkey.h"\
 -	".\queue.h"\
 -	".\secblock.h"\
 -	".\sha.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	".\words.h"\
 -	
 -
 -.\iterhash.cpp : \
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\iterhash.h"\
 -	".\misc.h"\
 -	".\pch.h"\
 -	".\secblock.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	
 -
 -.\luc.cpp : \
 -	".\algebra.h"\
 -	".\algparam.h"\
 -	".\argnames.h"\
 -	".\asn.h"\
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\dh.h"\
 -	".\eprecomp.h"\
 -	".\filters.h"\
 -	".\fips140.h"\
 -	".\gfpcrypt.h"\
 -	".\hmac.h"\
 -	".\integer.h"\
 -	".\iterhash.h"\
 -	".\luc.h"\
 -	".\misc.h"\
 -	".\modarith.h"\
 -	".\modexppc.h"\
 -	".\nbtheory.h"\
 -	".\oaep.h"\
 -	".\pch.h"\
 -	".\pkcspad.h"\
 -	".\pubkey.h"\
 -	".\queue.h"\
 -	".\secblock.h"\
 -	".\seckey.h"\
 -	".\sha.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	
 -
 -.\mars.cpp : \
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\mars.h"\
 -	".\misc.h"\
 -	".\pch.h"\
 -	".\secblock.h"\
 -	".\seckey.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	
 -
 -.\marss.cpp : \
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\mars.h"\
 -	".\misc.h"\
 -	".\pch.h"\
 -	".\secblock.h"\
 -	".\seckey.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	
 -
 -.\md2.cpp : \
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\md2.h"\
 -	".\misc.h"\
 -	".\pch.h"\
 -	".\secblock.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	
 -
 -.\md4.cpp : \
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\iterhash.h"\
 -	".\md4.h"\
 -	".\misc.h"\
 -	".\pch.h"\
 -	".\secblock.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	
 -
 -.\md5.cpp : \
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\iterhash.h"\
 -	".\md5.h"\
 -	".\misc.h"\
 -	".\pch.h"\
 -	".\secblock.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	
 -
 -.\misc.cpp : \
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\misc.h"\
 -	".\pch.h"\
 -	".\secblock.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	".\words.h"\
 -	
 -
 -.\modes.cpp : \
 -	".\algparam.h"\
 -	".\argnames.h"\
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\misc.h"\
 -	".\modes.h"\
 -	".\pch.h"\
 -	".\secblock.h"\
 -	".\seckey.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	".\strciphr.h"\
 -	
 -
 -.\mqueue.cpp : \
 -	".\algparam.h"\
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\filters.h"\
 -	".\misc.h"\
 -	".\mqueue.h"\
 -	".\pch.h"\
 -	".\queue.h"\
 -	".\secblock.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	
 -
 -.\mqv.cpp : \
 -	".\algebra.h"\
 -	".\algparam.h"\
 -	".\argnames.h"\
 -	".\asn.h"\
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\eprecomp.h"\
 -	".\filters.h"\
 -	".\fips140.h"\
 -	".\gfpcrypt.h"\
 -	".\hmac.h"\
 -	".\integer.h"\
 -	".\iterhash.h"\
 -	".\misc.h"\
 -	".\modarith.h"\
 -	".\modexppc.h"\
 -	".\mqv.h"\
 -	".\pch.h"\
 -	".\pubkey.h"\
 -	".\queue.h"\
 -	".\secblock.h"\
 -	".\seckey.h"\
 -	".\sha.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	
 -
 -.\nbtheory.cpp : \
 -	".\algebra.h"\
 -	".\algparam.h"\
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\integer.h"\
 -	".\misc.h"\
 -	".\modarith.h"\
 -	".\nbtheory.h"\
 -	".\pch.h"\
 -	".\secblock.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	
 -
 -.\network.cpp : \
 -	".\algparam.h"\
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\filters.h"\
 -	".\hrtimer.h"\
 -	".\misc.h"\
 -	".\network.h"\
 -	".\pch.h"\
 -	".\queue.h"\
 -	".\secblock.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	".\wait.h"\
 -	
 -
 -.\oaep.cpp : \
 -	".\algebra.h"\
 -	".\algparam.h"\
 -	".\argnames.h"\
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\eprecomp.h"\
 -	".\filters.h"\
 -	".\fips140.h"\
 -	".\integer.h"\
 -	".\iterhash.h"\
 -	".\misc.h"\
 -	".\modarith.h"\
 -	".\oaep.h"\
 -	".\pch.h"\
 -	".\pubkey.h"\
 -	".\queue.h"\
 -	".\secblock.h"\
 -	".\sha.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	
 -
 -.\osrng.cpp : \
 -	".\aes.h"\
 -	".\algparam.h"\
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\filters.h"\
 -	".\fips140.h"\
 -	".\iterhash.h"\
 -	".\misc.h"\
 -	".\osrng.h"\
 -	".\pch.h"\
 -	".\queue.h"\
 -	".\randpool.h"\
 -	".\rijndael.h"\
 -	".\rng.h"\
 -	".\secblock.h"\
 -	".\seckey.h"\
 -	".\sha.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	
 -
 -.\panama.cpp : \
 -	".\argnames.h"\
 -	".\config.h"\
 -	".\cpu.h"\
 -	".\cryptlib.h"\
 -	".\iterhash.h"\
 -	".\misc.h"\
 -	".\panama.h"\
 -	".\pch.h"\
 -	".\secblock.h"\
 -	".\seckey.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	".\strciphr.h"\
 -	
 -
 -.\pch.cpp : \
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\misc.h"\
 -	".\pch.h"\
 -	".\secblock.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	
 -
 -.\pkcspad.cpp : \
 -	".\algebra.h"\
 -	".\algparam.h"\
 -	".\argnames.h"\
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\eprecomp.h"\
 -	".\filters.h"\
 -	".\fips140.h"\
 -	".\integer.h"\
 -	".\misc.h"\
 -	".\modarith.h"\
 -	".\pch.h"\
 -	".\pkcspad.h"\
 -	".\pubkey.h"\
 -	".\queue.h"\
 -	".\secblock.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	
 -
 -.\polynomi.cpp : \
 -	".\algebra.h"\
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\misc.h"\
 -	".\pch.h"\
 -	".\polynomi.h"\
 -	".\secblock.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	
 -
 -.\pssr.cpp : \
 -	".\algebra.h"\
 -	".\algparam.h"\
 -	".\argnames.h"\
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\emsa2.h"\
 -	".\eprecomp.h"\
 -	".\filters.h"\
 -	".\fips140.h"\
 -	".\integer.h"\
 -	".\misc.h"\
 -	".\modarith.h"\
 -	".\pch.h"\
 -	".\pssr.h"\
 -	".\pubkey.h"\
 -	".\queue.h"\
 -	".\secblock.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	
 -
 -.\pubkey.cpp : \
 -	".\algebra.h"\
 -	".\algparam.h"\
 -	".\argnames.h"\
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\eprecomp.h"\
 -	".\filters.h"\
 -	".\fips140.h"\
 -	".\integer.h"\
 -	".\misc.h"\
 -	".\modarith.h"\
 -	".\pch.h"\
 -	".\pubkey.h"\
 -	".\queue.h"\
 -	".\secblock.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	
 -
 -.\queue.cpp : \
 -	".\algparam.h"\
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\filters.h"\
 -	".\misc.h"\
 -	".\pch.h"\
 -	".\queue.h"\
 -	".\secblock.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	
 -
 -.\rabin.cpp : \
 -	".\algebra.h"\
 -	".\algparam.h"\
 -	".\argnames.h"\
 -	".\asn.h"\
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\emsa2.h"\
 -	".\eprecomp.h"\
 -	".\filters.h"\
 -	".\fips140.h"\
 -	".\integer.h"\
 -	".\iterhash.h"\
 -	".\misc.h"\
 -	".\modarith.h"\
 -	".\nbtheory.h"\
 -	".\oaep.h"\
 -	".\pch.h"\
 -	".\pssr.h"\
 -	".\pubkey.h"\
 -	".\queue.h"\
 -	".\rabin.h"\
 -	".\secblock.h"\
 -	".\sha.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	
 -
 -.\randpool.cpp : \
 -	".\aes.h"\
 -	".\algparam.h"\
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\filters.h"\
 -	".\hrtimer.h"\
 -	".\iterhash.h"\
 -	".\misc.h"\
 -	".\pch.h"\
 -	".\queue.h"\
 -	".\randpool.h"\
 -	".\rijndael.h"\
 -	".\secblock.h"\
 -	".\seckey.h"\
 -	".\sha.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	
 -
 -.\rc2.cpp : \
 -	".\algparam.h"\
 -	".\argnames.h"\
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\misc.h"\
 -	".\pch.h"\
 -	".\rc2.h"\
 -	".\secblock.h"\
 -	".\seckey.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	
 -
 -.\rc5.cpp : \
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\misc.h"\
 -	".\pch.h"\
 -	".\rc5.h"\
 -	".\secblock.h"\
 -	".\seckey.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	
 -
 -.\rc6.cpp : \
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\misc.h"\
 -	".\pch.h"\
 -	".\rc6.h"\
 -	".\secblock.h"\
 -	".\seckey.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	
 -
 -.\rdtables.cpp : \
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\misc.h"\
 -	".\pch.h"\
 -	".\rijndael.h"\
 -	".\secblock.h"\
 -	".\seckey.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	
 -
 -.\rijndael.cpp : \
 -	".\config.h"\
 -	".\cpu.h"\
 -	".\cryptlib.h"\
 -	".\misc.h"\
 -	".\pch.h"\
 -	".\rijndael.h"\
 -	".\secblock.h"\
 -	".\seckey.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	
 -
 -.\ripemd.cpp : \
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\iterhash.h"\
 -	".\misc.h"\
 -	".\pch.h"\
 -	".\ripemd.h"\
 -	".\secblock.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	
 -
 -.\rng.cpp : \
 -	".\algparam.h"\
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\filters.h"\
 -	".\fips140.h"\
 -	".\misc.h"\
 -	".\pch.h"\
 -	".\queue.h"\
 -	".\rng.h"\
 -	".\secblock.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	
 -
 -.\rsa.cpp : \
 -	".\algebra.h"\
 -	".\algparam.h"\
 -	".\argnames.h"\
 -	".\asn.h"\
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\emsa2.h"\
 -	".\eprecomp.h"\
 -	".\filters.h"\
 -	".\fips140.h"\
 -	".\integer.h"\
 -	".\iterhash.h"\
 -	".\misc.h"\
 -	".\modarith.h"\
 -	".\nbtheory.h"\
 -	".\oaep.h"\
 -	".\oids.h"\
 -	".\pch.h"\
 -	".\pkcspad.h"\
 -	".\pubkey.h"\
 -	".\queue.h"\
 -	".\rsa.h"\
 -	".\secblock.h"\
 -	".\sha.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	
 -
 -.\rw.cpp : \
 -	".\algebra.h"\
 -	".\algparam.h"\
 -	".\argnames.h"\
 -	".\asn.h"\
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\eprecomp.h"\
 -	".\filters.h"\
 -	".\fips140.h"\
 -	".\integer.h"\
 -	".\misc.h"\
 -	".\modarith.h"\
 -	".\nbtheory.h"\
 -	".\pch.h"\
 -	".\pubkey.h"\
 -	".\queue.h"\
 -	".\rw.h"\
 -	".\secblock.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	
 -
 -.\safer.cpp : \
 -	".\argnames.h"\
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\misc.h"\
 -	".\pch.h"\
 -	".\safer.h"\
 -	".\secblock.h"\
 -	".\seckey.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	
 -
 -.\salsa.cpp : \
 -	".\argnames.h"\
 -	".\config.h"\
 -	".\cpu.h"\
 -	".\cryptlib.h"\
 -	".\misc.h"\
 -	".\pch.h"\
 -	".\salsa.h"\
 -	".\secblock.h"\
 -	".\seckey.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	".\strciphr.h"\
 -	
 -
 -.\seal.cpp : \
 -	".\argnames.h"\
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\iterhash.h"\
 -	".\misc.h"\
 -	".\pch.h"\
 -	".\seal.h"\
 -	".\secblock.h"\
 -	".\seckey.h"\
 -	".\sha.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	".\strciphr.h"\
 -	
 -
 -.\serpent.cpp : \
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\misc.h"\
 -	".\pch.h"\
 -	".\secblock.h"\
 -	".\seckey.h"\
 -	".\serpent.h"\
 -	".\serpentp.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	
 -
 -.\sha.cpp : \
 -	".\config.h"\
 -	".\cpu.h"\
 -	".\cryptlib.h"\
 -	".\iterhash.h"\
 -	".\misc.h"\
 -	".\pch.h"\
 -	".\secblock.h"\
 -	".\sha.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	
 -
 -.\shacal2.cpp : \
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\misc.h"\
 -	".\pch.h"\
 -	".\secblock.h"\
 -	".\seckey.h"\
 -	".\shacal2.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	
 -
 -.\shark.cpp : \
 -	".\algparam.h"\
 -	".\argnames.h"\
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\gf256.h"\
 -	".\misc.h"\
 -	".\modes.h"\
 -	".\pch.h"\
 -	".\secblock.h"\
 -	".\seckey.h"\
 -	".\shark.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	".\strciphr.h"\
 -	
 -
 -.\sharkbox.cpp : \
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\misc.h"\
 -	".\pch.h"\
 -	".\secblock.h"\
 -	".\seckey.h"\
 -	".\shark.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	
 -
 -.\simple.cpp : \
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\misc.h"\
 -	".\pch.h"\
 -	".\secblock.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	
 -
 -.\skipjack.cpp : \
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\misc.h"\
 -	".\pch.h"\
 -	".\secblock.h"\
 -	".\seckey.h"\
 -	".\simple.h"\
 -	".\skipjack.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	
 -
 -.\socketft.cpp : \
 -	".\algparam.h"\
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\filters.h"\
 -	".\hrtimer.h"\
 -	".\misc.h"\
 -	".\network.h"\
 -	".\pch.h"\
 -	".\queue.h"\
 -	".\secblock.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\socketft.h"\
 -	".\stdcpp.h"\
 -	".\wait.h"\
 -	".\winpipes.h"\
 -	
 -
 -.\sosemanuk.cpp : \
 -	".\argnames.h"\
 -	".\config.h"\
 -	".\cpu.h"\
 -	".\cryptlib.h"\
 -	".\misc.h"\
 -	".\pch.h"\
 -	".\secblock.h"\
 -	".\seckey.h"\
 -	".\serpentp.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\sosemanuk.h"\
 -	".\stdcpp.h"\
 -	".\strciphr.h"\
 -	
 -
 -.\square.cpp : \
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\gf256.h"\
 -	".\misc.h"\
 -	".\pch.h"\
 -	".\secblock.h"\
 -	".\seckey.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\square.h"\
 -	".\stdcpp.h"\
 -	
 -
 -.\squaretb.cpp : \
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\misc.h"\
 -	".\pch.h"\
 -	".\secblock.h"\
 -	".\seckey.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\square.h"\
 -	".\stdcpp.h"\
 -	
 -
 -.\strciphr.cpp : \
 -	".\argnames.h"\
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\misc.h"\
 -	".\pch.h"\
 -	".\secblock.h"\
 -	".\seckey.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	".\strciphr.h"\
 -	
 -
 -.\tea.cpp : \
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\misc.h"\
 -	".\pch.h"\
 -	".\secblock.h"\
 -	".\seckey.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	".\tea.h"\
 -	
 -
 -.\tftables.cpp : \
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\misc.h"\
 -	".\pch.h"\
 -	".\secblock.h"\
 -	".\seckey.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	".\twofish.h"\
 -	
 -
 -.\tiger.cpp : \
 -	".\config.h"\
 -	".\cpu.h"\
 -	".\cryptlib.h"\
 -	".\iterhash.h"\
 -	".\misc.h"\
 -	".\pch.h"\
 -	".\secblock.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	".\tiger.h"\
 -	
 -
 -.\tigertab.cpp : \
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\iterhash.h"\
 -	".\misc.h"\
 -	".\pch.h"\
 -	".\secblock.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	".\tiger.h"\
 -	
 -
 -.\trdlocal.cpp : \
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\misc.h"\
 -	".\pch.h"\
 -	".\secblock.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	".\trdlocal.h"\
 -	
 -
 -.\ttmac.cpp : \
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\iterhash.h"\
 -	".\misc.h"\
 -	".\pch.h"\
 -	".\secblock.h"\
 -	".\seckey.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	".\ttmac.h"\
 -	
 -
 -.\twofish.cpp : \
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\misc.h"\
 -	".\pch.h"\
 -	".\secblock.h"\
 -	".\seckey.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	".\twofish.h"\
 -	
 -
 -.\vmac.cpp : \
 -	".\argnames.h"\
 -	".\config.h"\
 -	".\cpu.h"\
 -	".\cryptlib.h"\
 -	".\iterhash.h"\
 -	".\misc.h"\
 -	".\pch.h"\
 -	".\secblock.h"\
 -	".\seckey.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	".\vmac.h"\
 -	
 -
 -.\wait.cpp : \
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\hrtimer.h"\
 -	".\misc.h"\
 -	".\pch.h"\
 -	".\secblock.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	".\wait.h"\
 -	
 -
 -.\wake.cpp : \
 -	".\argnames.h"\
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\misc.h"\
 -	".\pch.h"\
 -	".\secblock.h"\
 -	".\seckey.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	".\strciphr.h"\
 -	".\wake.h"\
 -	
 -
 -.\whrlpool.cpp : \
 -	".\config.h"\
 -	".\cpu.h"\
 -	".\cryptlib.h"\
 -	".\iterhash.h"\
 -	".\misc.h"\
 -	".\pch.h"\
 -	".\secblock.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	".\whrlpool.h"\
 -	
 -
 -.\winpipes.cpp : \
 -	".\algparam.h"\
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\filters.h"\
 -	".\hrtimer.h"\
 -	".\misc.h"\
 -	".\network.h"\
 -	".\pch.h"\
 -	".\queue.h"\
 -	".\secblock.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	".\wait.h"\
 -	".\winpipes.h"\
 -	
 -
 -.\xtr.cpp : \
 -	".\algebra.cpp"\
 -	".\algebra.h"\
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\integer.h"\
 -	".\pch.h"\
 -	".\secblock.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	
 -
 -.\xtrcrypt.cpp : \
 -	".\algebra.h"\
 -	".\algparam.h"\
 -	".\argnames.h"\
 -	".\asn.h"\
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\filters.h"\
 -	".\integer.h"\
 -	".\misc.h"\
 -	".\modarith.h"\
 -	".\nbtheory.h"\
 -	".\pch.h"\
 -	".\queue.h"\
 -	".\secblock.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	".\xtr.h"\
 -	".\xtrcrypt.h"\
 -	
 -
 -.\zdeflate.cpp : \
 -	".\algparam.h"\
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\filters.h"\
 -	".\misc.h"\
 -	".\pch.h"\
 -	".\queue.h"\
 -	".\secblock.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	".\zdeflate.h"\
 -	
 -
 -.\zinflate.cpp : \
 -	".\algparam.h"\
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\filters.h"\
 -	".\misc.h"\
 -	".\pch.h"\
 -	".\queue.h"\
 -	".\secblock.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	".\zinflate.h"\
 -	
 -
 -.\zlib.cpp : \
 -	".\adler32.h"\
 -	".\algparam.h"\
 -	".\config.h"\
 -	".\cryptlib.h"\
 -	".\filters.h"\
 -	".\misc.h"\
 -	".\pch.h"\
 -	".\queue.h"\
 -	".\secblock.h"\
 -	".\simple.h"\
 -	".\smartptr.h"\
 -	".\stdcpp.h"\
 -	".\zdeflate.h"\
 -	".\zinflate.h"\
 -	".\zlib.h"\
 -	
 diff --git a/plugins/CryptoPP/crypto/cryptlib.dsp b/plugins/CryptoPP/crypto/cryptlib.dsp deleted file mode 100644 index 8f6b1a3d8a..0000000000 --- a/plugins/CryptoPP/crypto/cryptlib.dsp +++ /dev/null @@ -1,1155 +0,0 @@ -# Microsoft Developer Studio Project File - Name="cryptlib" - Package Owner=<4>
 -# Microsoft Developer Studio Generated Build File, Format Version 6.00
 -# ** DO NOT EDIT **
 -
 -# TARGTYPE "Win32 (x86) Static Library" 0x0104
 -
 -CFG=cryptlib - Win32 Debug
 -!MESSAGE This is not a valid makefile. To build this project using NMAKE,
 -!MESSAGE use the Export Makefile command and run
 -!MESSAGE 
 -!MESSAGE NMAKE /f "cryptlib.mak".
 -!MESSAGE 
 -!MESSAGE You can specify a configuration when running NMAKE
 -!MESSAGE by defining the macro CFG on the command line. For example:
 -!MESSAGE 
 -!MESSAGE NMAKE /f "cryptlib.mak" CFG="cryptlib - Win32 Debug"
 -!MESSAGE 
 -!MESSAGE Possible choices for configuration are:
 -!MESSAGE 
 -!MESSAGE "cryptlib - Win32 DLL-Import Release" (based on "Win32 (x86) Static Library")
 -!MESSAGE "cryptlib - Win32 DLL-Import Debug" (based on "Win32 (x86) Static Library")
 -!MESSAGE "cryptlib - Win32 Release" (based on "Win32 (x86) Static Library")
 -!MESSAGE "cryptlib - Win32 Debug" (based on "Win32 (x86) Static Library")
 -!MESSAGE 
 -
 -# Begin Project
 -# PROP AllowPerConfigDependencies 0
 -# PROP Scc_ProjName ""
 -# PROP Scc_LocalPath ""
 -CPP=cl.exe
 -RSC=rc.exe
 -
 -!IF  "$(CFG)" == "cryptlib - Win32 DLL-Import Release"
 -
 -# PROP BASE Use_MFC 0
 -# PROP BASE Use_Debug_Libraries 0
 -# PROP BASE Output_Dir "cryptlib___Win32_FIPS_140_Release"
 -# PROP BASE Intermediate_Dir "cryptlib___Win32_FIPS_140_Release"
 -# PROP BASE Target_Dir ""
 -# PROP Use_MFC 0
 -# PROP Use_Debug_Libraries 0
 -# PROP Output_Dir "DLL_Import_Release"
 -# PROP Intermediate_Dir "DLL_Import_Release"
 -# PROP Target_Dir ""
 -# ADD BASE CPP /nologo /G5 /Gz /MT /W3 /GX /Zi /O2 /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "USE_PRECOMPILED_HEADERS" /Yu"pch.h" /FD /c
 -# ADD CPP /nologo /G5 /Gz /MT /W3 /GX /Zi /O2 /Ob2 /D "NDEBUG" /D "_WINDOWS" /D "USE_PRECOMPILED_HEADERS" /D "WIN32" /D "CRYPTOPP_IMPORTS" /Yu"pch.h" /FD /Zm400 /c
 -# ADD BASE RSC /l 0x409
 -# ADD RSC /l 0x409
 -BSC32=bscmake.exe
 -# ADD BASE BSC32 /nologo
 -# ADD BSC32 /nologo
 -LIB32=link.exe -lib
 -# ADD BASE LIB32 /nologo
 -# ADD LIB32 /nologo
 -
 -!ELSEIF  "$(CFG)" == "cryptlib - Win32 DLL-Import Debug"
 -
 -# PROP BASE Use_MFC 0
 -# PROP BASE Use_Debug_Libraries 1
 -# PROP BASE Output_Dir "cryptlib___Win32_FIPS_140_Debug"
 -# PROP BASE Intermediate_Dir "cryptlib___Win32_FIPS_140_Debug"
 -# PROP BASE Target_Dir ""
 -# PROP Use_MFC 0
 -# PROP Use_Debug_Libraries 1
 -# PROP Output_Dir "DLL_Import_Debug"
 -# PROP Intermediate_Dir "DLL_Import_Debug"
 -# PROP Target_Dir ""
 -# ADD BASE CPP /nologo /MTd /W3 /GX /ZI /Od /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /D "USE_PRECOMPILED_HEADERS" /Yu"pch.h" /FD /c
 -# ADD CPP /nologo /G5 /Gz /MTd /W3 /GX /Zi /Oi /D "_DEBUG" /D "_WINDOWS" /D "USE_PRECOMPILED_HEADERS" /D "WIN32" /D "CRYPTOPP_IMPORTS" /Yu"pch.h" /FD /Zm400 /c
 -# ADD BASE RSC /l 0x409
 -# ADD RSC /l 0x409
 -BSC32=bscmake.exe
 -# ADD BASE BSC32 /nologo
 -# ADD BSC32 /nologo
 -LIB32=link.exe -lib
 -# ADD BASE LIB32 /nologo
 -# ADD LIB32 /nologo
 -
 -!ELSEIF  "$(CFG)" == "cryptlib - Win32 Release"
 -
 -# PROP BASE Use_MFC 0
 -# PROP BASE Use_Debug_Libraries 0
 -# PROP BASE Output_Dir "cryptlib"
 -# PROP BASE Intermediate_Dir "cryptlib"
 -# PROP BASE Target_Dir ""
 -# PROP Use_MFC 0
 -# PROP Use_Debug_Libraries 0
 -# PROP Output_Dir "Release"
 -# PROP Intermediate_Dir "Release"
 -# PROP Target_Dir ""
 -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c
 -# ADD CPP /nologo /MD /W3 /GX /Zi /O1 /Ob1 /D "NDEBUG" /D "_WINDOWS" /D "USE_PRECOMPILED_HEADERS" /D "WIN32" /Yu"pch.h" /FD /Zm400 /c
 -# ADD BASE RSC /l 0x409
 -# ADD RSC /l 0x409
 -BSC32=bscmake.exe
 -# ADD BASE BSC32 /nologo
 -# ADD BSC32 /nologo
 -LIB32=link.exe -lib
 -# ADD BASE LIB32 /nologo
 -# ADD LIB32 /nologo
 -
 -!ELSEIF  "$(CFG)" == "cryptlib - Win32 Debug"
 -
 -# PROP BASE Use_MFC 0
 -# PROP BASE Use_Debug_Libraries 1
 -# PROP BASE Output_Dir "cryptli0"
 -# PROP BASE Intermediate_Dir "cryptli0"
 -# PROP BASE Target_Dir ""
 -# PROP Use_MFC 0
 -# PROP Use_Debug_Libraries 1
 -# PROP Output_Dir "Debug"
 -# PROP Intermediate_Dir "Debug"
 -# PROP Target_Dir ""
 -# ADD BASE CPP /nologo /W3 /GX /Z7 /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c
 -# ADD CPP /nologo /MDd /W3 /GX /Zi /Oi /D "_DEBUG" /D "_WINDOWS" /D "USE_PRECOMPILED_HEADERS" /D "WIN32" /Yu"pch.h" /FD /Zm400 /c
 -# ADD BASE RSC /l 0x409
 -# ADD RSC /l 0x409
 -BSC32=bscmake.exe
 -# ADD BASE BSC32 /nologo
 -# ADD BSC32 /nologo
 -LIB32=link.exe -lib
 -# ADD BASE LIB32 /nologo
 -# ADD LIB32 /nologo
 -
 -!ENDIF 
 -
 -# Begin Target
 -
 -# Name "cryptlib - Win32 DLL-Import Release"
 -# Name "cryptlib - Win32 DLL-Import Debug"
 -# Name "cryptlib - Win32 Release"
 -# Name "cryptlib - Win32 Debug"
 -# Begin Group "Source Files"
 -
 -# PROP Default_Filter ".cpp"
 -# Begin Source File
 -
 -SOURCE=.\3way.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\adhoc.cpp.proto
 -
 -!IF  "$(CFG)" == "cryptlib - Win32 DLL-Import Release"
 -
 -# Begin Custom Build
 -InputPath=.\adhoc.cpp.proto
 -
 -"adhoc.cpp.copied" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
 -	if not exist adhoc.cpp copy "$(InputPath)" adhoc.cpp 
 -	echo: >> adhoc.cpp.copied 
 -	
 -# End Custom Build
 -
 -!ELSEIF  "$(CFG)" == "cryptlib - Win32 DLL-Import Debug"
 -
 -# Begin Custom Build
 -InputPath=.\adhoc.cpp.proto
 -
 -"adhoc.cpp.copied" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
 -	if not exist adhoc.cpp copy "$(InputPath)" adhoc.cpp 
 -	echo: >> adhoc.cpp.copied 
 -	
 -# End Custom Build
 -
 -!ELSEIF  "$(CFG)" == "cryptlib - Win32 Release"
 -
 -# Begin Custom Build
 -InputPath=.\adhoc.cpp.proto
 -
 -"adhoc.cpp.copied" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
 -	if not exist adhoc.cpp copy "$(InputPath)" adhoc.cpp 
 -	echo: >> adhoc.cpp.copied 
 -	
 -# End Custom Build
 -
 -!ELSEIF  "$(CFG)" == "cryptlib - Win32 Debug"
 -
 -# Begin Custom Build
 -InputPath=.\adhoc.cpp.proto
 -
 -"adhoc.cpp.copied" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
 -	if not exist adhoc.cpp copy "$(InputPath)" adhoc.cpp 
 -	echo: >> adhoc.cpp.copied 
 -	
 -# End Custom Build
 -
 -!ENDIF 
 -
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\adler32.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\algebra.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\algparam.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\arc4.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\asn.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\base32.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\base64.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\basecode.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\bfinit.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\blowfish.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\blumshub.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\camellia.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\cast.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\casts.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\cbcmac.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\channels.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\cpu.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\crc.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\cryptlib.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\default.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\des.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\dessp.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\dh.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\dh2.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\dll.cpp
 -# SUBTRACT CPP /YX /Yc /Yu
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\dsa.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\ec2n.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\eccrypto.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\ecp.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\elgamal.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\emsa2.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\eprecomp.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\esign.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\files.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\filters.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\fips140.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\fipstest.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\gf256.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\gf2_32.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\gf2n.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\gfpcrypt.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\gost.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\gzip.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\hex.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\hmac.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\hrtimer.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\ida.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\idea.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\integer.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\iterhash.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\luc.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\mars.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\marss.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\md2.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\md4.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\md5.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\misc.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\modes.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\mqueue.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\mqv.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\nbtheory.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\network.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\oaep.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\osrng.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\panama.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\pch.cpp
 -# ADD CPP /Yc"pch.h"
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\pkcspad.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\polynomi.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\pssr.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\pubkey.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\queue.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\rabin.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\randpool.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\rc2.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\rc5.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\rc6.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\rdtables.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\rijndael.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\ripemd.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\rng.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\rsa.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\rw.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\safer.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\salsa.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\seal.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\serpent.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\sha.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\shacal2.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\shark.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\sharkbox.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\simple.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\skipjack.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\socketft.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\sosemanuk.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\square.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\squaretb.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\strciphr.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\tea.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\tftables.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\tiger.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\tigertab.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\trdlocal.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\ttmac.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\twofish.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\vmac.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\wait.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\wake.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\whrlpool.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\winpipes.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\xtr.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\xtrcrypt.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\zdeflate.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\zinflate.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\zlib.cpp
 -# End Source File
 -# End Group
 -# Begin Group "Header Files"
 -
 -# PROP Default_Filter ".;.h"
 -# Begin Source File
 -
 -SOURCE=.\3way.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\adler32.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\aes.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\algebra.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\algparam.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\arc4.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\argnames.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\asn.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\base32.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\base64.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\basecode.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\blowfish.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\blumshub.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\camellia.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\cast.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\cbcmac.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\channels.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\config.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\crc.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\cryptlib.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\default.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\des.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\dh.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\dh2.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\dmac.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\dsa.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\dword.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\ec2n.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\eccrypto.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\ecp.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\elgamal.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\emsa2.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\eprecomp.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\esign.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\factory.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\files.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\filters.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\fips140.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\fltrimpl.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\gf256.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\gf2_32.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\gf2n.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\gfpcrypt.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\gost.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\gzip.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\hex.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\hmac.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\hrtimer.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\ida.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\idea.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\integer.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\iterhash.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\lubyrack.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\luc.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\mars.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\md2.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\md4.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\md5.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\mdc.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\misc.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\modarith.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\modes.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\modexppc.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\mqueue.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\mqv.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\nbtheory.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\network.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\nr.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\oaep.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\oids.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\osrng.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\panama.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\pch.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\pkcspad.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\polynomi.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\pssr.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\pubkey.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\pwdbased.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\queue.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\rabin.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\randpool.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\rc2.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\rc5.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\rc6.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\rijndael.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\ripemd.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\rng.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\rsa.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\rw.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\safer.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\salsa.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\seal.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\secblock.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\seckey.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\serpent.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\sha.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\shacal2.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\shark.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\simple.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\skipjack.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\smartptr.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\socketft.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\square.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\strciphr.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\tea.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\tiger.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\trdlocal.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\trunhash.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\ttmac.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\twofish.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\wait.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\wake.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\whrlpool.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\winpipes.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\words.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\xtr.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\xtrcrypt.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\zdeflate.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\zinflate.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\zlib.h
 -# End Source File
 -# End Group
 -# Begin Group "Miscellaneous"
 -
 -# PROP Default_Filter ""
 -# Begin Source File
 -
 -SOURCE=.\Doxyfile
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\GNUmakefile
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\license.txt
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\readme.txt
 -# End Source File
 -# End Group
 -# End Target
 -# End Project
 diff --git a/plugins/CryptoPP/crypto/cryptlib.mak b/plugins/CryptoPP/crypto/cryptlib.mak deleted file mode 100644 index b9f57df8e5..0000000000 --- a/plugins/CryptoPP/crypto/cryptlib.mak +++ /dev/null @@ -1,1942 +0,0 @@ -# Microsoft Developer Studio Generated NMAKE File, Based on cryptlib.dsp
 -!IF "$(CFG)" == ""
 -CFG=cryptlib - Win32 Debug
 -!MESSAGE No configuration specified. Defaulting to cryptlib - Win32 Debug.
 -!ENDIF 
 -
 -!IF "$(CFG)" != "cryptlib - Win32 DLL-Import Release" && "$(CFG)" != "cryptlib - Win32 DLL-Import Debug" && "$(CFG)" != "cryptlib - Win32 Release" && "$(CFG)" != "cryptlib - Win32 Debug"
 -!MESSAGE Invalid configuration "$(CFG)" specified.
 -!MESSAGE You can specify a configuration when running NMAKE
 -!MESSAGE by defining the macro CFG on the command line. For example:
 -!MESSAGE 
 -!MESSAGE NMAKE /f "cryptlib.mak" CFG="cryptlib - Win32 Debug"
 -!MESSAGE 
 -!MESSAGE Possible choices for configuration are:
 -!MESSAGE 
 -!MESSAGE "cryptlib - Win32 DLL-Import Release" (based on "Win32 (x86) Static Library")
 -!MESSAGE "cryptlib - Win32 DLL-Import Debug" (based on "Win32 (x86) Static Library")
 -!MESSAGE "cryptlib - Win32 Release" (based on "Win32 (x86) Static Library")
 -!MESSAGE "cryptlib - Win32 Debug" (based on "Win32 (x86) Static Library")
 -!MESSAGE 
 -!ERROR An invalid configuration is specified.
 -!ENDIF 
 -
 -!IF "$(OS)" == "Windows_NT"
 -NULL=
 -!ELSE 
 -NULL=nul
 -!ENDIF 
 -
 -!IF  "$(CFG)" == "cryptlib - Win32 DLL-Import Release"
 -
 -OUTDIR=.\DLL_Import_Release
 -INTDIR=.\DLL_Import_Release
 -# Begin Custom Macros
 -OutDir=.\DLL_Import_Release
 -# End Custom Macros
 -
 -ALL : ".\adhoc.cpp.copied" "$(OUTDIR)\cryptlib.lib"
 -
 -
 -CLEAN :
 -	-@erase "$(INTDIR)\3way.obj"
 -	-@erase "$(INTDIR)\adler32.obj"
 -	-@erase "$(INTDIR)\algebra.obj"
 -	-@erase "$(INTDIR)\algparam.obj"
 -	-@erase "$(INTDIR)\arc4.obj"
 -	-@erase "$(INTDIR)\asn.obj"
 -	-@erase "$(INTDIR)\base32.obj"
 -	-@erase "$(INTDIR)\base64.obj"
 -	-@erase "$(INTDIR)\basecode.obj"
 -	-@erase "$(INTDIR)\bfinit.obj"
 -	-@erase "$(INTDIR)\blowfish.obj"
 -	-@erase "$(INTDIR)\blumshub.obj"
 -	-@erase "$(INTDIR)\camellia.obj"
 -	-@erase "$(INTDIR)\cast.obj"
 -	-@erase "$(INTDIR)\casts.obj"
 -	-@erase "$(INTDIR)\cbcmac.obj"
 -	-@erase "$(INTDIR)\channels.obj"
 -	-@erase "$(INTDIR)\cpu.obj"
 -	-@erase "$(INTDIR)\crc.obj"
 -	-@erase "$(INTDIR)\cryptlib.obj"
 -	-@erase "$(INTDIR)\cryptlib.pch"
 -	-@erase "$(INTDIR)\default.obj"
 -	-@erase "$(INTDIR)\des.obj"
 -	-@erase "$(INTDIR)\dessp.obj"
 -	-@erase "$(INTDIR)\dh.obj"
 -	-@erase "$(INTDIR)\dh2.obj"
 -	-@erase "$(INTDIR)\dll.obj"
 -	-@erase "$(INTDIR)\dsa.obj"
 -	-@erase "$(INTDIR)\ec2n.obj"
 -	-@erase "$(INTDIR)\eccrypto.obj"
 -	-@erase "$(INTDIR)\ecp.obj"
 -	-@erase "$(INTDIR)\elgamal.obj"
 -	-@erase "$(INTDIR)\emsa2.obj"
 -	-@erase "$(INTDIR)\eprecomp.obj"
 -	-@erase "$(INTDIR)\esign.obj"
 -	-@erase "$(INTDIR)\files.obj"
 -	-@erase "$(INTDIR)\filters.obj"
 -	-@erase "$(INTDIR)\fips140.obj"
 -	-@erase "$(INTDIR)\fipstest.obj"
 -	-@erase "$(INTDIR)\gf256.obj"
 -	-@erase "$(INTDIR)\gf2_32.obj"
 -	-@erase "$(INTDIR)\gf2n.obj"
 -	-@erase "$(INTDIR)\gfpcrypt.obj"
 -	-@erase "$(INTDIR)\gost.obj"
 -	-@erase "$(INTDIR)\gzip.obj"
 -	-@erase "$(INTDIR)\hex.obj"
 -	-@erase "$(INTDIR)\hmac.obj"
 -	-@erase "$(INTDIR)\hrtimer.obj"
 -	-@erase "$(INTDIR)\ida.obj"
 -	-@erase "$(INTDIR)\idea.obj"
 -	-@erase "$(INTDIR)\integer.obj"
 -	-@erase "$(INTDIR)\iterhash.obj"
 -	-@erase "$(INTDIR)\luc.obj"
 -	-@erase "$(INTDIR)\mars.obj"
 -	-@erase "$(INTDIR)\marss.obj"
 -	-@erase "$(INTDIR)\md2.obj"
 -	-@erase "$(INTDIR)\md4.obj"
 -	-@erase "$(INTDIR)\md5.obj"
 -	-@erase "$(INTDIR)\misc.obj"
 -	-@erase "$(INTDIR)\modes.obj"
 -	-@erase "$(INTDIR)\mqueue.obj"
 -	-@erase "$(INTDIR)\mqv.obj"
 -	-@erase "$(INTDIR)\nbtheory.obj"
 -	-@erase "$(INTDIR)\network.obj"
 -	-@erase "$(INTDIR)\oaep.obj"
 -	-@erase "$(INTDIR)\osrng.obj"
 -	-@erase "$(INTDIR)\panama.obj"
 -	-@erase "$(INTDIR)\pch.obj"
 -	-@erase "$(INTDIR)\pkcspad.obj"
 -	-@erase "$(INTDIR)\polynomi.obj"
 -	-@erase "$(INTDIR)\pssr.obj"
 -	-@erase "$(INTDIR)\pubkey.obj"
 -	-@erase "$(INTDIR)\queue.obj"
 -	-@erase "$(INTDIR)\rabin.obj"
 -	-@erase "$(INTDIR)\randpool.obj"
 -	-@erase "$(INTDIR)\rc2.obj"
 -	-@erase "$(INTDIR)\rc5.obj"
 -	-@erase "$(INTDIR)\rc6.obj"
 -	-@erase "$(INTDIR)\rdtables.obj"
 -	-@erase "$(INTDIR)\rijndael.obj"
 -	-@erase "$(INTDIR)\ripemd.obj"
 -	-@erase "$(INTDIR)\rng.obj"
 -	-@erase "$(INTDIR)\rsa.obj"
 -	-@erase "$(INTDIR)\rw.obj"
 -	-@erase "$(INTDIR)\safer.obj"
 -	-@erase "$(INTDIR)\salsa.obj"
 -	-@erase "$(INTDIR)\seal.obj"
 -	-@erase "$(INTDIR)\serpent.obj"
 -	-@erase "$(INTDIR)\sha.obj"
 -	-@erase "$(INTDIR)\shacal2.obj"
 -	-@erase "$(INTDIR)\shark.obj"
 -	-@erase "$(INTDIR)\sharkbox.obj"
 -	-@erase "$(INTDIR)\simple.obj"
 -	-@erase "$(INTDIR)\skipjack.obj"
 -	-@erase "$(INTDIR)\socketft.obj"
 -	-@erase "$(INTDIR)\sosemanuk.obj"
 -	-@erase "$(INTDIR)\square.obj"
 -	-@erase "$(INTDIR)\squaretb.obj"
 -	-@erase "$(INTDIR)\strciphr.obj"
 -	-@erase "$(INTDIR)\tea.obj"
 -	-@erase "$(INTDIR)\tftables.obj"
 -	-@erase "$(INTDIR)\tiger.obj"
 -	-@erase "$(INTDIR)\tigertab.obj"
 -	-@erase "$(INTDIR)\trdlocal.obj"
 -	-@erase "$(INTDIR)\ttmac.obj"
 -	-@erase "$(INTDIR)\twofish.obj"
 -	-@erase "$(INTDIR)\vc60.idb"
 -	-@erase "$(INTDIR)\vc60.pdb"
 -	-@erase "$(INTDIR)\vmac.obj"
 -	-@erase "$(INTDIR)\wait.obj"
 -	-@erase "$(INTDIR)\wake.obj"
 -	-@erase "$(INTDIR)\whrlpool.obj"
 -	-@erase "$(INTDIR)\winpipes.obj"
 -	-@erase "$(INTDIR)\xtr.obj"
 -	-@erase "$(INTDIR)\xtrcrypt.obj"
 -	-@erase "$(INTDIR)\zdeflate.obj"
 -	-@erase "$(INTDIR)\zinflate.obj"
 -	-@erase "$(INTDIR)\zlib.obj"
 -	-@erase "$(OUTDIR)\cryptlib.lib"
 -	-@erase "adhoc.cpp.copied"
 -
 -"$(OUTDIR)" :
 -    if not exist "$(OUTDIR)/$(NULL)" mkdir "$(OUTDIR)"
 -
 -CPP=cl.exe
 -CPP_PROJ=/nologo /G5 /Gz /MT /W3 /GX /Zi /O2 /Ob2 /D "NDEBUG" /D "_WINDOWS" /D "USE_PRECOMPILED_HEADERS" /D "WIN32" /D "CRYPTOPP_IMPORTS" /Fp"$(INTDIR)\cryptlib.pch" /Yu"pch.h" /Fo"$(INTDIR)\\" /Fd"$(INTDIR)\\" /FD /Zm400 /c 
 -
 -.c{$(INTDIR)}.obj::
 -   $(CPP) @<<
 -   $(CPP_PROJ) $< 
 -<<
 -
 -.cpp{$(INTDIR)}.obj::
 -   $(CPP) @<<
 -   $(CPP_PROJ) $< 
 -<<
 -
 -.cxx{$(INTDIR)}.obj::
 -   $(CPP) @<<
 -   $(CPP_PROJ) $< 
 -<<
 -
 -.c{$(INTDIR)}.sbr::
 -   $(CPP) @<<
 -   $(CPP_PROJ) $< 
 -<<
 -
 -.cpp{$(INTDIR)}.sbr::
 -   $(CPP) @<<
 -   $(CPP_PROJ) $< 
 -<<
 -
 -.cxx{$(INTDIR)}.sbr::
 -   $(CPP) @<<
 -   $(CPP_PROJ) $< 
 -<<
 -
 -RSC=rc.exe
 -BSC32=bscmake.exe
 -BSC32_FLAGS=/nologo /o"$(OUTDIR)\cryptlib.bsc" 
 -BSC32_SBRS= \
 -	
 -LIB32=link.exe -lib
 -LIB32_FLAGS=/nologo /out:"$(OUTDIR)\cryptlib.lib" 
 -LIB32_OBJS= \
 -	"$(INTDIR)\3way.obj" \
 -	"$(INTDIR)\adler32.obj" \
 -	"$(INTDIR)\algebra.obj" \
 -	"$(INTDIR)\algparam.obj" \
 -	"$(INTDIR)\arc4.obj" \
 -	"$(INTDIR)\asn.obj" \
 -	"$(INTDIR)\base32.obj" \
 -	"$(INTDIR)\base64.obj" \
 -	"$(INTDIR)\basecode.obj" \
 -	"$(INTDIR)\bfinit.obj" \
 -	"$(INTDIR)\blowfish.obj" \
 -	"$(INTDIR)\blumshub.obj" \
 -	"$(INTDIR)\camellia.obj" \
 -	"$(INTDIR)\cast.obj" \
 -	"$(INTDIR)\casts.obj" \
 -	"$(INTDIR)\cbcmac.obj" \
 -	"$(INTDIR)\channels.obj" \
 -	"$(INTDIR)\cpu.obj" \
 -	"$(INTDIR)\crc.obj" \
 -	"$(INTDIR)\cryptlib.obj" \
 -	"$(INTDIR)\default.obj" \
 -	"$(INTDIR)\des.obj" \
 -	"$(INTDIR)\dessp.obj" \
 -	"$(INTDIR)\dh.obj" \
 -	"$(INTDIR)\dh2.obj" \
 -	"$(INTDIR)\dll.obj" \
 -	"$(INTDIR)\dsa.obj" \
 -	"$(INTDIR)\ec2n.obj" \
 -	"$(INTDIR)\eccrypto.obj" \
 -	"$(INTDIR)\ecp.obj" \
 -	"$(INTDIR)\elgamal.obj" \
 -	"$(INTDIR)\emsa2.obj" \
 -	"$(INTDIR)\eprecomp.obj" \
 -	"$(INTDIR)\esign.obj" \
 -	"$(INTDIR)\files.obj" \
 -	"$(INTDIR)\filters.obj" \
 -	"$(INTDIR)\fips140.obj" \
 -	"$(INTDIR)\fipstest.obj" \
 -	"$(INTDIR)\gf256.obj" \
 -	"$(INTDIR)\gf2_32.obj" \
 -	"$(INTDIR)\gf2n.obj" \
 -	"$(INTDIR)\gfpcrypt.obj" \
 -	"$(INTDIR)\gost.obj" \
 -	"$(INTDIR)\gzip.obj" \
 -	"$(INTDIR)\hex.obj" \
 -	"$(INTDIR)\hmac.obj" \
 -	"$(INTDIR)\hrtimer.obj" \
 -	"$(INTDIR)\ida.obj" \
 -	"$(INTDIR)\idea.obj" \
 -	"$(INTDIR)\integer.obj" \
 -	"$(INTDIR)\iterhash.obj" \
 -	"$(INTDIR)\luc.obj" \
 -	"$(INTDIR)\mars.obj" \
 -	"$(INTDIR)\marss.obj" \
 -	"$(INTDIR)\md2.obj" \
 -	"$(INTDIR)\md4.obj" \
 -	"$(INTDIR)\md5.obj" \
 -	"$(INTDIR)\misc.obj" \
 -	"$(INTDIR)\modes.obj" \
 -	"$(INTDIR)\mqueue.obj" \
 -	"$(INTDIR)\mqv.obj" \
 -	"$(INTDIR)\nbtheory.obj" \
 -	"$(INTDIR)\network.obj" \
 -	"$(INTDIR)\oaep.obj" \
 -	"$(INTDIR)\osrng.obj" \
 -	"$(INTDIR)\panama.obj" \
 -	"$(INTDIR)\pch.obj" \
 -	"$(INTDIR)\pkcspad.obj" \
 -	"$(INTDIR)\polynomi.obj" \
 -	"$(INTDIR)\pssr.obj" \
 -	"$(INTDIR)\pubkey.obj" \
 -	"$(INTDIR)\queue.obj" \
 -	"$(INTDIR)\rabin.obj" \
 -	"$(INTDIR)\randpool.obj" \
 -	"$(INTDIR)\rc2.obj" \
 -	"$(INTDIR)\rc5.obj" \
 -	"$(INTDIR)\rc6.obj" \
 -	"$(INTDIR)\rdtables.obj" \
 -	"$(INTDIR)\rijndael.obj" \
 -	"$(INTDIR)\ripemd.obj" \
 -	"$(INTDIR)\rng.obj" \
 -	"$(INTDIR)\rsa.obj" \
 -	"$(INTDIR)\rw.obj" \
 -	"$(INTDIR)\safer.obj" \
 -	"$(INTDIR)\salsa.obj" \
 -	"$(INTDIR)\seal.obj" \
 -	"$(INTDIR)\serpent.obj" \
 -	"$(INTDIR)\sha.obj" \
 -	"$(INTDIR)\shacal2.obj" \
 -	"$(INTDIR)\shark.obj" \
 -	"$(INTDIR)\sharkbox.obj" \
 -	"$(INTDIR)\simple.obj" \
 -	"$(INTDIR)\skipjack.obj" \
 -	"$(INTDIR)\socketft.obj" \
 -	"$(INTDIR)\sosemanuk.obj" \
 -	"$(INTDIR)\square.obj" \
 -	"$(INTDIR)\squaretb.obj" \
 -	"$(INTDIR)\strciphr.obj" \
 -	"$(INTDIR)\tea.obj" \
 -	"$(INTDIR)\tftables.obj" \
 -	"$(INTDIR)\tiger.obj" \
 -	"$(INTDIR)\tigertab.obj" \
 -	"$(INTDIR)\trdlocal.obj" \
 -	"$(INTDIR)\ttmac.obj" \
 -	"$(INTDIR)\twofish.obj" \
 -	"$(INTDIR)\vmac.obj" \
 -	"$(INTDIR)\wait.obj" \
 -	"$(INTDIR)\wake.obj" \
 -	"$(INTDIR)\whrlpool.obj" \
 -	"$(INTDIR)\winpipes.obj" \
 -	"$(INTDIR)\xtr.obj" \
 -	"$(INTDIR)\xtrcrypt.obj" \
 -	"$(INTDIR)\zdeflate.obj" \
 -	"$(INTDIR)\zinflate.obj" \
 -	"$(INTDIR)\zlib.obj"
 -
 -"$(OUTDIR)\cryptlib.lib" : "$(OUTDIR)" $(DEF_FILE) $(LIB32_OBJS)
 -    $(LIB32) @<<
 -  $(LIB32_FLAGS) $(DEF_FLAGS) $(LIB32_OBJS)
 -<<
 -
 -!ELSEIF  "$(CFG)" == "cryptlib - Win32 DLL-Import Debug"
 -
 -OUTDIR=.\DLL_Import_Debug
 -INTDIR=.\DLL_Import_Debug
 -# Begin Custom Macros
 -OutDir=.\DLL_Import_Debug
 -# End Custom Macros
 -
 -ALL : ".\adhoc.cpp.copied" "$(OUTDIR)\cryptlib.lib"
 -
 -
 -CLEAN :
 -	-@erase "$(INTDIR)\3way.obj"
 -	-@erase "$(INTDIR)\adler32.obj"
 -	-@erase "$(INTDIR)\algebra.obj"
 -	-@erase "$(INTDIR)\algparam.obj"
 -	-@erase "$(INTDIR)\arc4.obj"
 -	-@erase "$(INTDIR)\asn.obj"
 -	-@erase "$(INTDIR)\base32.obj"
 -	-@erase "$(INTDIR)\base64.obj"
 -	-@erase "$(INTDIR)\basecode.obj"
 -	-@erase "$(INTDIR)\bfinit.obj"
 -	-@erase "$(INTDIR)\blowfish.obj"
 -	-@erase "$(INTDIR)\blumshub.obj"
 -	-@erase "$(INTDIR)\camellia.obj"
 -	-@erase "$(INTDIR)\cast.obj"
 -	-@erase "$(INTDIR)\casts.obj"
 -	-@erase "$(INTDIR)\cbcmac.obj"
 -	-@erase "$(INTDIR)\channels.obj"
 -	-@erase "$(INTDIR)\cpu.obj"
 -	-@erase "$(INTDIR)\crc.obj"
 -	-@erase "$(INTDIR)\cryptlib.obj"
 -	-@erase "$(INTDIR)\cryptlib.pch"
 -	-@erase "$(INTDIR)\default.obj"
 -	-@erase "$(INTDIR)\des.obj"
 -	-@erase "$(INTDIR)\dessp.obj"
 -	-@erase "$(INTDIR)\dh.obj"
 -	-@erase "$(INTDIR)\dh2.obj"
 -	-@erase "$(INTDIR)\dll.obj"
 -	-@erase "$(INTDIR)\dsa.obj"
 -	-@erase "$(INTDIR)\ec2n.obj"
 -	-@erase "$(INTDIR)\eccrypto.obj"
 -	-@erase "$(INTDIR)\ecp.obj"
 -	-@erase "$(INTDIR)\elgamal.obj"
 -	-@erase "$(INTDIR)\emsa2.obj"
 -	-@erase "$(INTDIR)\eprecomp.obj"
 -	-@erase "$(INTDIR)\esign.obj"
 -	-@erase "$(INTDIR)\files.obj"
 -	-@erase "$(INTDIR)\filters.obj"
 -	-@erase "$(INTDIR)\fips140.obj"
 -	-@erase "$(INTDIR)\fipstest.obj"
 -	-@erase "$(INTDIR)\gf256.obj"
 -	-@erase "$(INTDIR)\gf2_32.obj"
 -	-@erase "$(INTDIR)\gf2n.obj"
 -	-@erase "$(INTDIR)\gfpcrypt.obj"
 -	-@erase "$(INTDIR)\gost.obj"
 -	-@erase "$(INTDIR)\gzip.obj"
 -	-@erase "$(INTDIR)\hex.obj"
 -	-@erase "$(INTDIR)\hmac.obj"
 -	-@erase "$(INTDIR)\hrtimer.obj"
 -	-@erase "$(INTDIR)\ida.obj"
 -	-@erase "$(INTDIR)\idea.obj"
 -	-@erase "$(INTDIR)\integer.obj"
 -	-@erase "$(INTDIR)\iterhash.obj"
 -	-@erase "$(INTDIR)\luc.obj"
 -	-@erase "$(INTDIR)\mars.obj"
 -	-@erase "$(INTDIR)\marss.obj"
 -	-@erase "$(INTDIR)\md2.obj"
 -	-@erase "$(INTDIR)\md4.obj"
 -	-@erase "$(INTDIR)\md5.obj"
 -	-@erase "$(INTDIR)\misc.obj"
 -	-@erase "$(INTDIR)\modes.obj"
 -	-@erase "$(INTDIR)\mqueue.obj"
 -	-@erase "$(INTDIR)\mqv.obj"
 -	-@erase "$(INTDIR)\nbtheory.obj"
 -	-@erase "$(INTDIR)\network.obj"
 -	-@erase "$(INTDIR)\oaep.obj"
 -	-@erase "$(INTDIR)\osrng.obj"
 -	-@erase "$(INTDIR)\panama.obj"
 -	-@erase "$(INTDIR)\pch.obj"
 -	-@erase "$(INTDIR)\pkcspad.obj"
 -	-@erase "$(INTDIR)\polynomi.obj"
 -	-@erase "$(INTDIR)\pssr.obj"
 -	-@erase "$(INTDIR)\pubkey.obj"
 -	-@erase "$(INTDIR)\queue.obj"
 -	-@erase "$(INTDIR)\rabin.obj"
 -	-@erase "$(INTDIR)\randpool.obj"
 -	-@erase "$(INTDIR)\rc2.obj"
 -	-@erase "$(INTDIR)\rc5.obj"
 -	-@erase "$(INTDIR)\rc6.obj"
 -	-@erase "$(INTDIR)\rdtables.obj"
 -	-@erase "$(INTDIR)\rijndael.obj"
 -	-@erase "$(INTDIR)\ripemd.obj"
 -	-@erase "$(INTDIR)\rng.obj"
 -	-@erase "$(INTDIR)\rsa.obj"
 -	-@erase "$(INTDIR)\rw.obj"
 -	-@erase "$(INTDIR)\safer.obj"
 -	-@erase "$(INTDIR)\salsa.obj"
 -	-@erase "$(INTDIR)\seal.obj"
 -	-@erase "$(INTDIR)\serpent.obj"
 -	-@erase "$(INTDIR)\sha.obj"
 -	-@erase "$(INTDIR)\shacal2.obj"
 -	-@erase "$(INTDIR)\shark.obj"
 -	-@erase "$(INTDIR)\sharkbox.obj"
 -	-@erase "$(INTDIR)\simple.obj"
 -	-@erase "$(INTDIR)\skipjack.obj"
 -	-@erase "$(INTDIR)\socketft.obj"
 -	-@erase "$(INTDIR)\sosemanuk.obj"
 -	-@erase "$(INTDIR)\square.obj"
 -	-@erase "$(INTDIR)\squaretb.obj"
 -	-@erase "$(INTDIR)\strciphr.obj"
 -	-@erase "$(INTDIR)\tea.obj"
 -	-@erase "$(INTDIR)\tftables.obj"
 -	-@erase "$(INTDIR)\tiger.obj"
 -	-@erase "$(INTDIR)\tigertab.obj"
 -	-@erase "$(INTDIR)\trdlocal.obj"
 -	-@erase "$(INTDIR)\ttmac.obj"
 -	-@erase "$(INTDIR)\twofish.obj"
 -	-@erase "$(INTDIR)\vc60.idb"
 -	-@erase "$(INTDIR)\vc60.pdb"
 -	-@erase "$(INTDIR)\vmac.obj"
 -	-@erase "$(INTDIR)\wait.obj"
 -	-@erase "$(INTDIR)\wake.obj"
 -	-@erase "$(INTDIR)\whrlpool.obj"
 -	-@erase "$(INTDIR)\winpipes.obj"
 -	-@erase "$(INTDIR)\xtr.obj"
 -	-@erase "$(INTDIR)\xtrcrypt.obj"
 -	-@erase "$(INTDIR)\zdeflate.obj"
 -	-@erase "$(INTDIR)\zinflate.obj"
 -	-@erase "$(INTDIR)\zlib.obj"
 -	-@erase "$(OUTDIR)\cryptlib.lib"
 -	-@erase "adhoc.cpp.copied"
 -
 -"$(OUTDIR)" :
 -    if not exist "$(OUTDIR)/$(NULL)" mkdir "$(OUTDIR)"
 -
 -CPP=cl.exe
 -CPP_PROJ=/nologo /G5 /Gz /MTd /W3 /GX /Zi /Oi /D "_DEBUG" /D "_WINDOWS" /D "USE_PRECOMPILED_HEADERS" /D "WIN32" /D "CRYPTOPP_IMPORTS" /Fp"$(INTDIR)\cryptlib.pch" /Yu"pch.h" /Fo"$(INTDIR)\\" /Fd"$(INTDIR)\\" /FD /Zm400 /c 
 -
 -.c{$(INTDIR)}.obj::
 -   $(CPP) @<<
 -   $(CPP_PROJ) $< 
 -<<
 -
 -.cpp{$(INTDIR)}.obj::
 -   $(CPP) @<<
 -   $(CPP_PROJ) $< 
 -<<
 -
 -.cxx{$(INTDIR)}.obj::
 -   $(CPP) @<<
 -   $(CPP_PROJ) $< 
 -<<
 -
 -.c{$(INTDIR)}.sbr::
 -   $(CPP) @<<
 -   $(CPP_PROJ) $< 
 -<<
 -
 -.cpp{$(INTDIR)}.sbr::
 -   $(CPP) @<<
 -   $(CPP_PROJ) $< 
 -<<
 -
 -.cxx{$(INTDIR)}.sbr::
 -   $(CPP) @<<
 -   $(CPP_PROJ) $< 
 -<<
 -
 -RSC=rc.exe
 -BSC32=bscmake.exe
 -BSC32_FLAGS=/nologo /o"$(OUTDIR)\cryptlib.bsc" 
 -BSC32_SBRS= \
 -	
 -LIB32=link.exe -lib
 -LIB32_FLAGS=/nologo /out:"$(OUTDIR)\cryptlib.lib" 
 -LIB32_OBJS= \
 -	"$(INTDIR)\3way.obj" \
 -	"$(INTDIR)\adler32.obj" \
 -	"$(INTDIR)\algebra.obj" \
 -	"$(INTDIR)\algparam.obj" \
 -	"$(INTDIR)\arc4.obj" \
 -	"$(INTDIR)\asn.obj" \
 -	"$(INTDIR)\base32.obj" \
 -	"$(INTDIR)\base64.obj" \
 -	"$(INTDIR)\basecode.obj" \
 -	"$(INTDIR)\bfinit.obj" \
 -	"$(INTDIR)\blowfish.obj" \
 -	"$(INTDIR)\blumshub.obj" \
 -	"$(INTDIR)\camellia.obj" \
 -	"$(INTDIR)\cast.obj" \
 -	"$(INTDIR)\casts.obj" \
 -	"$(INTDIR)\cbcmac.obj" \
 -	"$(INTDIR)\channels.obj" \
 -	"$(INTDIR)\cpu.obj" \
 -	"$(INTDIR)\crc.obj" \
 -	"$(INTDIR)\cryptlib.obj" \
 -	"$(INTDIR)\default.obj" \
 -	"$(INTDIR)\des.obj" \
 -	"$(INTDIR)\dessp.obj" \
 -	"$(INTDIR)\dh.obj" \
 -	"$(INTDIR)\dh2.obj" \
 -	"$(INTDIR)\dll.obj" \
 -	"$(INTDIR)\dsa.obj" \
 -	"$(INTDIR)\ec2n.obj" \
 -	"$(INTDIR)\eccrypto.obj" \
 -	"$(INTDIR)\ecp.obj" \
 -	"$(INTDIR)\elgamal.obj" \
 -	"$(INTDIR)\emsa2.obj" \
 -	"$(INTDIR)\eprecomp.obj" \
 -	"$(INTDIR)\esign.obj" \
 -	"$(INTDIR)\files.obj" \
 -	"$(INTDIR)\filters.obj" \
 -	"$(INTDIR)\fips140.obj" \
 -	"$(INTDIR)\fipstest.obj" \
 -	"$(INTDIR)\gf256.obj" \
 -	"$(INTDIR)\gf2_32.obj" \
 -	"$(INTDIR)\gf2n.obj" \
 -	"$(INTDIR)\gfpcrypt.obj" \
 -	"$(INTDIR)\gost.obj" \
 -	"$(INTDIR)\gzip.obj" \
 -	"$(INTDIR)\hex.obj" \
 -	"$(INTDIR)\hmac.obj" \
 -	"$(INTDIR)\hrtimer.obj" \
 -	"$(INTDIR)\ida.obj" \
 -	"$(INTDIR)\idea.obj" \
 -	"$(INTDIR)\integer.obj" \
 -	"$(INTDIR)\iterhash.obj" \
 -	"$(INTDIR)\luc.obj" \
 -	"$(INTDIR)\mars.obj" \
 -	"$(INTDIR)\marss.obj" \
 -	"$(INTDIR)\md2.obj" \
 -	"$(INTDIR)\md4.obj" \
 -	"$(INTDIR)\md5.obj" \
 -	"$(INTDIR)\misc.obj" \
 -	"$(INTDIR)\modes.obj" \
 -	"$(INTDIR)\mqueue.obj" \
 -	"$(INTDIR)\mqv.obj" \
 -	"$(INTDIR)\nbtheory.obj" \
 -	"$(INTDIR)\network.obj" \
 -	"$(INTDIR)\oaep.obj" \
 -	"$(INTDIR)\osrng.obj" \
 -	"$(INTDIR)\panama.obj" \
 -	"$(INTDIR)\pch.obj" \
 -	"$(INTDIR)\pkcspad.obj" \
 -	"$(INTDIR)\polynomi.obj" \
 -	"$(INTDIR)\pssr.obj" \
 -	"$(INTDIR)\pubkey.obj" \
 -	"$(INTDIR)\queue.obj" \
 -	"$(INTDIR)\rabin.obj" \
 -	"$(INTDIR)\randpool.obj" \
 -	"$(INTDIR)\rc2.obj" \
 -	"$(INTDIR)\rc5.obj" \
 -	"$(INTDIR)\rc6.obj" \
 -	"$(INTDIR)\rdtables.obj" \
 -	"$(INTDIR)\rijndael.obj" \
 -	"$(INTDIR)\ripemd.obj" \
 -	"$(INTDIR)\rng.obj" \
 -	"$(INTDIR)\rsa.obj" \
 -	"$(INTDIR)\rw.obj" \
 -	"$(INTDIR)\safer.obj" \
 -	"$(INTDIR)\salsa.obj" \
 -	"$(INTDIR)\seal.obj" \
 -	"$(INTDIR)\serpent.obj" \
 -	"$(INTDIR)\sha.obj" \
 -	"$(INTDIR)\shacal2.obj" \
 -	"$(INTDIR)\shark.obj" \
 -	"$(INTDIR)\sharkbox.obj" \
 -	"$(INTDIR)\simple.obj" \
 -	"$(INTDIR)\skipjack.obj" \
 -	"$(INTDIR)\socketft.obj" \
 -	"$(INTDIR)\sosemanuk.obj" \
 -	"$(INTDIR)\square.obj" \
 -	"$(INTDIR)\squaretb.obj" \
 -	"$(INTDIR)\strciphr.obj" \
 -	"$(INTDIR)\tea.obj" \
 -	"$(INTDIR)\tftables.obj" \
 -	"$(INTDIR)\tiger.obj" \
 -	"$(INTDIR)\tigertab.obj" \
 -	"$(INTDIR)\trdlocal.obj" \
 -	"$(INTDIR)\ttmac.obj" \
 -	"$(INTDIR)\twofish.obj" \
 -	"$(INTDIR)\vmac.obj" \
 -	"$(INTDIR)\wait.obj" \
 -	"$(INTDIR)\wake.obj" \
 -	"$(INTDIR)\whrlpool.obj" \
 -	"$(INTDIR)\winpipes.obj" \
 -	"$(INTDIR)\xtr.obj" \
 -	"$(INTDIR)\xtrcrypt.obj" \
 -	"$(INTDIR)\zdeflate.obj" \
 -	"$(INTDIR)\zinflate.obj" \
 -	"$(INTDIR)\zlib.obj"
 -
 -"$(OUTDIR)\cryptlib.lib" : "$(OUTDIR)" $(DEF_FILE) $(LIB32_OBJS)
 -    $(LIB32) @<<
 -  $(LIB32_FLAGS) $(DEF_FLAGS) $(LIB32_OBJS)
 -<<
 -
 -!ELSEIF  "$(CFG)" == "cryptlib - Win32 Release"
 -
 -OUTDIR=.\Release
 -INTDIR=.\Release
 -# Begin Custom Macros
 -OutDir=.\Release
 -# End Custom Macros
 -
 -ALL : ".\adhoc.cpp.copied" "$(OUTDIR)\cryptlib.lib"
 -
 -
 -CLEAN :
 -	-@erase "$(INTDIR)\3way.obj"
 -	-@erase "$(INTDIR)\adler32.obj"
 -	-@erase "$(INTDIR)\algebra.obj"
 -	-@erase "$(INTDIR)\algparam.obj"
 -	-@erase "$(INTDIR)\arc4.obj"
 -	-@erase "$(INTDIR)\asn.obj"
 -	-@erase "$(INTDIR)\base32.obj"
 -	-@erase "$(INTDIR)\base64.obj"
 -	-@erase "$(INTDIR)\basecode.obj"
 -	-@erase "$(INTDIR)\bfinit.obj"
 -	-@erase "$(INTDIR)\blowfish.obj"
 -	-@erase "$(INTDIR)\blumshub.obj"
 -	-@erase "$(INTDIR)\camellia.obj"
 -	-@erase "$(INTDIR)\cast.obj"
 -	-@erase "$(INTDIR)\casts.obj"
 -	-@erase "$(INTDIR)\cbcmac.obj"
 -	-@erase "$(INTDIR)\channels.obj"
 -	-@erase "$(INTDIR)\cpu.obj"
 -	-@erase "$(INTDIR)\crc.obj"
 -	-@erase "$(INTDIR)\cryptlib.obj"
 -	-@erase "$(INTDIR)\cryptlib.pch"
 -	-@erase "$(INTDIR)\default.obj"
 -	-@erase "$(INTDIR)\des.obj"
 -	-@erase "$(INTDIR)\dessp.obj"
 -	-@erase "$(INTDIR)\dh.obj"
 -	-@erase "$(INTDIR)\dh2.obj"
 -	-@erase "$(INTDIR)\dll.obj"
 -	-@erase "$(INTDIR)\dsa.obj"
 -	-@erase "$(INTDIR)\ec2n.obj"
 -	-@erase "$(INTDIR)\eccrypto.obj"
 -	-@erase "$(INTDIR)\ecp.obj"
 -	-@erase "$(INTDIR)\elgamal.obj"
 -	-@erase "$(INTDIR)\emsa2.obj"
 -	-@erase "$(INTDIR)\eprecomp.obj"
 -	-@erase "$(INTDIR)\esign.obj"
 -	-@erase "$(INTDIR)\files.obj"
 -	-@erase "$(INTDIR)\filters.obj"
 -	-@erase "$(INTDIR)\fips140.obj"
 -	-@erase "$(INTDIR)\fipstest.obj"
 -	-@erase "$(INTDIR)\gf256.obj"
 -	-@erase "$(INTDIR)\gf2_32.obj"
 -	-@erase "$(INTDIR)\gf2n.obj"
 -	-@erase "$(INTDIR)\gfpcrypt.obj"
 -	-@erase "$(INTDIR)\gost.obj"
 -	-@erase "$(INTDIR)\gzip.obj"
 -	-@erase "$(INTDIR)\hex.obj"
 -	-@erase "$(INTDIR)\hmac.obj"
 -	-@erase "$(INTDIR)\hrtimer.obj"
 -	-@erase "$(INTDIR)\ida.obj"
 -	-@erase "$(INTDIR)\idea.obj"
 -	-@erase "$(INTDIR)\integer.obj"
 -	-@erase "$(INTDIR)\iterhash.obj"
 -	-@erase "$(INTDIR)\luc.obj"
 -	-@erase "$(INTDIR)\mars.obj"
 -	-@erase "$(INTDIR)\marss.obj"
 -	-@erase "$(INTDIR)\md2.obj"
 -	-@erase "$(INTDIR)\md4.obj"
 -	-@erase "$(INTDIR)\md5.obj"
 -	-@erase "$(INTDIR)\misc.obj"
 -	-@erase "$(INTDIR)\modes.obj"
 -	-@erase "$(INTDIR)\mqueue.obj"
 -	-@erase "$(INTDIR)\mqv.obj"
 -	-@erase "$(INTDIR)\nbtheory.obj"
 -	-@erase "$(INTDIR)\network.obj"
 -	-@erase "$(INTDIR)\oaep.obj"
 -	-@erase "$(INTDIR)\osrng.obj"
 -	-@erase "$(INTDIR)\panama.obj"
 -	-@erase "$(INTDIR)\pch.obj"
 -	-@erase "$(INTDIR)\pkcspad.obj"
 -	-@erase "$(INTDIR)\polynomi.obj"
 -	-@erase "$(INTDIR)\pssr.obj"
 -	-@erase "$(INTDIR)\pubkey.obj"
 -	-@erase "$(INTDIR)\queue.obj"
 -	-@erase "$(INTDIR)\rabin.obj"
 -	-@erase "$(INTDIR)\randpool.obj"
 -	-@erase "$(INTDIR)\rc2.obj"
 -	-@erase "$(INTDIR)\rc5.obj"
 -	-@erase "$(INTDIR)\rc6.obj"
 -	-@erase "$(INTDIR)\rdtables.obj"
 -	-@erase "$(INTDIR)\rijndael.obj"
 -	-@erase "$(INTDIR)\ripemd.obj"
 -	-@erase "$(INTDIR)\rng.obj"
 -	-@erase "$(INTDIR)\rsa.obj"
 -	-@erase "$(INTDIR)\rw.obj"
 -	-@erase "$(INTDIR)\safer.obj"
 -	-@erase "$(INTDIR)\salsa.obj"
 -	-@erase "$(INTDIR)\seal.obj"
 -	-@erase "$(INTDIR)\serpent.obj"
 -	-@erase "$(INTDIR)\sha.obj"
 -	-@erase "$(INTDIR)\shacal2.obj"
 -	-@erase "$(INTDIR)\shark.obj"
 -	-@erase "$(INTDIR)\sharkbox.obj"
 -	-@erase "$(INTDIR)\simple.obj"
 -	-@erase "$(INTDIR)\skipjack.obj"
 -	-@erase "$(INTDIR)\socketft.obj"
 -	-@erase "$(INTDIR)\sosemanuk.obj"
 -	-@erase "$(INTDIR)\square.obj"
 -	-@erase "$(INTDIR)\squaretb.obj"
 -	-@erase "$(INTDIR)\strciphr.obj"
 -	-@erase "$(INTDIR)\tea.obj"
 -	-@erase "$(INTDIR)\tftables.obj"
 -	-@erase "$(INTDIR)\tiger.obj"
 -	-@erase "$(INTDIR)\tigertab.obj"
 -	-@erase "$(INTDIR)\trdlocal.obj"
 -	-@erase "$(INTDIR)\ttmac.obj"
 -	-@erase "$(INTDIR)\twofish.obj"
 -	-@erase "$(INTDIR)\vc60.idb"
 -	-@erase "$(INTDIR)\vc60.pdb"
 -	-@erase "$(INTDIR)\vmac.obj"
 -	-@erase "$(INTDIR)\wait.obj"
 -	-@erase "$(INTDIR)\wake.obj"
 -	-@erase "$(INTDIR)\whrlpool.obj"
 -	-@erase "$(INTDIR)\winpipes.obj"
 -	-@erase "$(INTDIR)\xtr.obj"
 -	-@erase "$(INTDIR)\xtrcrypt.obj"
 -	-@erase "$(INTDIR)\zdeflate.obj"
 -	-@erase "$(INTDIR)\zinflate.obj"
 -	-@erase "$(INTDIR)\zlib.obj"
 -	-@erase "$(OUTDIR)\cryptlib.lib"
 -	-@erase "adhoc.cpp.copied"
 -
 -"$(OUTDIR)" :
 -    if not exist "$(OUTDIR)/$(NULL)" mkdir "$(OUTDIR)"
 -
 -CPP=cl.exe
 -CPP_PROJ=/nologo /MD /W3 /GX /Zi /O1 /D "NDEBUG" /D "_WINDOWS" /D "USE_PRECOMPILED_HEADERS" /D "WIN32" /Fp"$(INTDIR)\cryptlib.pch" /Yu"pch.h" /Fo"$(INTDIR)\\" /Fd"$(INTDIR)\\" /FD /Zm400 /c 
 -
 -.c{$(INTDIR)}.obj::
 -   $(CPP) @<<
 -   $(CPP_PROJ) $< 
 -<<
 -
 -.cpp{$(INTDIR)}.obj::
 -   $(CPP) @<<
 -   $(CPP_PROJ) $< 
 -<<
 -
 -.cxx{$(INTDIR)}.obj::
 -   $(CPP) @<<
 -   $(CPP_PROJ) $< 
 -<<
 -
 -.c{$(INTDIR)}.sbr::
 -   $(CPP) @<<
 -   $(CPP_PROJ) $< 
 -<<
 -
 -.cpp{$(INTDIR)}.sbr::
 -   $(CPP) @<<
 -   $(CPP_PROJ) $< 
 -<<
 -
 -.cxx{$(INTDIR)}.sbr::
 -   $(CPP) @<<
 -   $(CPP_PROJ) $< 
 -<<
 -
 -RSC=rc.exe
 -BSC32=bscmake.exe
 -BSC32_FLAGS=/nologo /o"$(OUTDIR)\cryptlib.bsc" 
 -BSC32_SBRS= \
 -	
 -LIB32=link.exe -lib
 -LIB32_FLAGS=/nologo /out:"$(OUTDIR)\cryptlib.lib" 
 -LIB32_OBJS= \
 -	"$(INTDIR)\3way.obj" \
 -	"$(INTDIR)\adler32.obj" \
 -	"$(INTDIR)\algebra.obj" \
 -	"$(INTDIR)\algparam.obj" \
 -	"$(INTDIR)\arc4.obj" \
 -	"$(INTDIR)\asn.obj" \
 -	"$(INTDIR)\base32.obj" \
 -	"$(INTDIR)\base64.obj" \
 -	"$(INTDIR)\basecode.obj" \
 -	"$(INTDIR)\bfinit.obj" \
 -	"$(INTDIR)\blowfish.obj" \
 -	"$(INTDIR)\blumshub.obj" \
 -	"$(INTDIR)\camellia.obj" \
 -	"$(INTDIR)\cast.obj" \
 -	"$(INTDIR)\casts.obj" \
 -	"$(INTDIR)\cbcmac.obj" \
 -	"$(INTDIR)\channels.obj" \
 -	"$(INTDIR)\cpu.obj" \
 -	"$(INTDIR)\crc.obj" \
 -	"$(INTDIR)\cryptlib.obj" \
 -	"$(INTDIR)\default.obj" \
 -	"$(INTDIR)\des.obj" \
 -	"$(INTDIR)\dessp.obj" \
 -	"$(INTDIR)\dh.obj" \
 -	"$(INTDIR)\dh2.obj" \
 -	"$(INTDIR)\dll.obj" \
 -	"$(INTDIR)\dsa.obj" \
 -	"$(INTDIR)\ec2n.obj" \
 -	"$(INTDIR)\eccrypto.obj" \
 -	"$(INTDIR)\ecp.obj" \
 -	"$(INTDIR)\elgamal.obj" \
 -	"$(INTDIR)\emsa2.obj" \
 -	"$(INTDIR)\eprecomp.obj" \
 -	"$(INTDIR)\esign.obj" \
 -	"$(INTDIR)\files.obj" \
 -	"$(INTDIR)\filters.obj" \
 -	"$(INTDIR)\fips140.obj" \
 -	"$(INTDIR)\fipstest.obj" \
 -	"$(INTDIR)\gf256.obj" \
 -	"$(INTDIR)\gf2_32.obj" \
 -	"$(INTDIR)\gf2n.obj" \
 -	"$(INTDIR)\gfpcrypt.obj" \
 -	"$(INTDIR)\gost.obj" \
 -	"$(INTDIR)\gzip.obj" \
 -	"$(INTDIR)\hex.obj" \
 -	"$(INTDIR)\hmac.obj" \
 -	"$(INTDIR)\hrtimer.obj" \
 -	"$(INTDIR)\ida.obj" \
 -	"$(INTDIR)\idea.obj" \
 -	"$(INTDIR)\integer.obj" \
 -	"$(INTDIR)\iterhash.obj" \
 -	"$(INTDIR)\luc.obj" \
 -	"$(INTDIR)\mars.obj" \
 -	"$(INTDIR)\marss.obj" \
 -	"$(INTDIR)\md2.obj" \
 -	"$(INTDIR)\md4.obj" \
 -	"$(INTDIR)\md5.obj" \
 -	"$(INTDIR)\misc.obj" \
 -	"$(INTDIR)\modes.obj" \
 -	"$(INTDIR)\mqueue.obj" \
 -	"$(INTDIR)\mqv.obj" \
 -	"$(INTDIR)\nbtheory.obj" \
 -	"$(INTDIR)\network.obj" \
 -	"$(INTDIR)\oaep.obj" \
 -	"$(INTDIR)\osrng.obj" \
 -	"$(INTDIR)\panama.obj" \
 -	"$(INTDIR)\pch.obj" \
 -	"$(INTDIR)\pkcspad.obj" \
 -	"$(INTDIR)\polynomi.obj" \
 -	"$(INTDIR)\pssr.obj" \
 -	"$(INTDIR)\pubkey.obj" \
 -	"$(INTDIR)\queue.obj" \
 -	"$(INTDIR)\rabin.obj" \
 -	"$(INTDIR)\randpool.obj" \
 -	"$(INTDIR)\rc2.obj" \
 -	"$(INTDIR)\rc5.obj" \
 -	"$(INTDIR)\rc6.obj" \
 -	"$(INTDIR)\rdtables.obj" \
 -	"$(INTDIR)\rijndael.obj" \
 -	"$(INTDIR)\ripemd.obj" \
 -	"$(INTDIR)\rng.obj" \
 -	"$(INTDIR)\rsa.obj" \
 -	"$(INTDIR)\rw.obj" \
 -	"$(INTDIR)\safer.obj" \
 -	"$(INTDIR)\salsa.obj" \
 -	"$(INTDIR)\seal.obj" \
 -	"$(INTDIR)\serpent.obj" \
 -	"$(INTDIR)\sha.obj" \
 -	"$(INTDIR)\shacal2.obj" \
 -	"$(INTDIR)\shark.obj" \
 -	"$(INTDIR)\sharkbox.obj" \
 -	"$(INTDIR)\simple.obj" \
 -	"$(INTDIR)\skipjack.obj" \
 -	"$(INTDIR)\socketft.obj" \
 -	"$(INTDIR)\sosemanuk.obj" \
 -	"$(INTDIR)\square.obj" \
 -	"$(INTDIR)\squaretb.obj" \
 -	"$(INTDIR)\strciphr.obj" \
 -	"$(INTDIR)\tea.obj" \
 -	"$(INTDIR)\tftables.obj" \
 -	"$(INTDIR)\tiger.obj" \
 -	"$(INTDIR)\tigertab.obj" \
 -	"$(INTDIR)\trdlocal.obj" \
 -	"$(INTDIR)\ttmac.obj" \
 -	"$(INTDIR)\twofish.obj" \
 -	"$(INTDIR)\vmac.obj" \
 -	"$(INTDIR)\wait.obj" \
 -	"$(INTDIR)\wake.obj" \
 -	"$(INTDIR)\whrlpool.obj" \
 -	"$(INTDIR)\winpipes.obj" \
 -	"$(INTDIR)\xtr.obj" \
 -	"$(INTDIR)\xtrcrypt.obj" \
 -	"$(INTDIR)\zdeflate.obj" \
 -	"$(INTDIR)\zinflate.obj" \
 -	"$(INTDIR)\zlib.obj"
 -
 -"$(OUTDIR)\cryptlib.lib" : "$(OUTDIR)" $(DEF_FILE) $(LIB32_OBJS)
 -    $(LIB32) @<<
 -  $(LIB32_FLAGS) $(DEF_FLAGS) $(LIB32_OBJS)
 -<<
 -
 -!ELSEIF  "$(CFG)" == "cryptlib - Win32 Debug"
 -
 -OUTDIR=.\Debug
 -INTDIR=.\Debug
 -# Begin Custom Macros
 -OutDir=.\Debug
 -# End Custom Macros
 -
 -ALL : ".\adhoc.cpp.copied" "$(OUTDIR)\cryptlib.lib"
 -
 -
 -CLEAN :
 -	-@erase "$(INTDIR)\3way.obj"
 -	-@erase "$(INTDIR)\adler32.obj"
 -	-@erase "$(INTDIR)\algebra.obj"
 -	-@erase "$(INTDIR)\algparam.obj"
 -	-@erase "$(INTDIR)\arc4.obj"
 -	-@erase "$(INTDIR)\asn.obj"
 -	-@erase "$(INTDIR)\base32.obj"
 -	-@erase "$(INTDIR)\base64.obj"
 -	-@erase "$(INTDIR)\basecode.obj"
 -	-@erase "$(INTDIR)\bfinit.obj"
 -	-@erase "$(INTDIR)\blowfish.obj"
 -	-@erase "$(INTDIR)\blumshub.obj"
 -	-@erase "$(INTDIR)\camellia.obj"
 -	-@erase "$(INTDIR)\cast.obj"
 -	-@erase "$(INTDIR)\casts.obj"
 -	-@erase "$(INTDIR)\cbcmac.obj"
 -	-@erase "$(INTDIR)\channels.obj"
 -	-@erase "$(INTDIR)\cpu.obj"
 -	-@erase "$(INTDIR)\crc.obj"
 -	-@erase "$(INTDIR)\cryptlib.obj"
 -	-@erase "$(INTDIR)\cryptlib.pch"
 -	-@erase "$(INTDIR)\default.obj"
 -	-@erase "$(INTDIR)\des.obj"
 -	-@erase "$(INTDIR)\dessp.obj"
 -	-@erase "$(INTDIR)\dh.obj"
 -	-@erase "$(INTDIR)\dh2.obj"
 -	-@erase "$(INTDIR)\dll.obj"
 -	-@erase "$(INTDIR)\dsa.obj"
 -	-@erase "$(INTDIR)\ec2n.obj"
 -	-@erase "$(INTDIR)\eccrypto.obj"
 -	-@erase "$(INTDIR)\ecp.obj"
 -	-@erase "$(INTDIR)\elgamal.obj"
 -	-@erase "$(INTDIR)\emsa2.obj"
 -	-@erase "$(INTDIR)\eprecomp.obj"
 -	-@erase "$(INTDIR)\esign.obj"
 -	-@erase "$(INTDIR)\files.obj"
 -	-@erase "$(INTDIR)\filters.obj"
 -	-@erase "$(INTDIR)\fips140.obj"
 -	-@erase "$(INTDIR)\fipstest.obj"
 -	-@erase "$(INTDIR)\gf256.obj"
 -	-@erase "$(INTDIR)\gf2_32.obj"
 -	-@erase "$(INTDIR)\gf2n.obj"
 -	-@erase "$(INTDIR)\gfpcrypt.obj"
 -	-@erase "$(INTDIR)\gost.obj"
 -	-@erase "$(INTDIR)\gzip.obj"
 -	-@erase "$(INTDIR)\hex.obj"
 -	-@erase "$(INTDIR)\hmac.obj"
 -	-@erase "$(INTDIR)\hrtimer.obj"
 -	-@erase "$(INTDIR)\ida.obj"
 -	-@erase "$(INTDIR)\idea.obj"
 -	-@erase "$(INTDIR)\integer.obj"
 -	-@erase "$(INTDIR)\iterhash.obj"
 -	-@erase "$(INTDIR)\luc.obj"
 -	-@erase "$(INTDIR)\mars.obj"
 -	-@erase "$(INTDIR)\marss.obj"
 -	-@erase "$(INTDIR)\md2.obj"
 -	-@erase "$(INTDIR)\md4.obj"
 -	-@erase "$(INTDIR)\md5.obj"
 -	-@erase "$(INTDIR)\misc.obj"
 -	-@erase "$(INTDIR)\modes.obj"
 -	-@erase "$(INTDIR)\mqueue.obj"
 -	-@erase "$(INTDIR)\mqv.obj"
 -	-@erase "$(INTDIR)\nbtheory.obj"
 -	-@erase "$(INTDIR)\network.obj"
 -	-@erase "$(INTDIR)\oaep.obj"
 -	-@erase "$(INTDIR)\osrng.obj"
 -	-@erase "$(INTDIR)\panama.obj"
 -	-@erase "$(INTDIR)\pch.obj"
 -	-@erase "$(INTDIR)\pkcspad.obj"
 -	-@erase "$(INTDIR)\polynomi.obj"
 -	-@erase "$(INTDIR)\pssr.obj"
 -	-@erase "$(INTDIR)\pubkey.obj"
 -	-@erase "$(INTDIR)\queue.obj"
 -	-@erase "$(INTDIR)\rabin.obj"
 -	-@erase "$(INTDIR)\randpool.obj"
 -	-@erase "$(INTDIR)\rc2.obj"
 -	-@erase "$(INTDIR)\rc5.obj"
 -	-@erase "$(INTDIR)\rc6.obj"
 -	-@erase "$(INTDIR)\rdtables.obj"
 -	-@erase "$(INTDIR)\rijndael.obj"
 -	-@erase "$(INTDIR)\ripemd.obj"
 -	-@erase "$(INTDIR)\rng.obj"
 -	-@erase "$(INTDIR)\rsa.obj"
 -	-@erase "$(INTDIR)\rw.obj"
 -	-@erase "$(INTDIR)\safer.obj"
 -	-@erase "$(INTDIR)\salsa.obj"
 -	-@erase "$(INTDIR)\seal.obj"
 -	-@erase "$(INTDIR)\serpent.obj"
 -	-@erase "$(INTDIR)\sha.obj"
 -	-@erase "$(INTDIR)\shacal2.obj"
 -	-@erase "$(INTDIR)\shark.obj"
 -	-@erase "$(INTDIR)\sharkbox.obj"
 -	-@erase "$(INTDIR)\simple.obj"
 -	-@erase "$(INTDIR)\skipjack.obj"
 -	-@erase "$(INTDIR)\socketft.obj"
 -	-@erase "$(INTDIR)\sosemanuk.obj"
 -	-@erase "$(INTDIR)\square.obj"
 -	-@erase "$(INTDIR)\squaretb.obj"
 -	-@erase "$(INTDIR)\strciphr.obj"
 -	-@erase "$(INTDIR)\tea.obj"
 -	-@erase "$(INTDIR)\tftables.obj"
 -	-@erase "$(INTDIR)\tiger.obj"
 -	-@erase "$(INTDIR)\tigertab.obj"
 -	-@erase "$(INTDIR)\trdlocal.obj"
 -	-@erase "$(INTDIR)\ttmac.obj"
 -	-@erase "$(INTDIR)\twofish.obj"
 -	-@erase "$(INTDIR)\vc60.idb"
 -	-@erase "$(INTDIR)\vc60.pdb"
 -	-@erase "$(INTDIR)\vmac.obj"
 -	-@erase "$(INTDIR)\wait.obj"
 -	-@erase "$(INTDIR)\wake.obj"
 -	-@erase "$(INTDIR)\whrlpool.obj"
 -	-@erase "$(INTDIR)\winpipes.obj"
 -	-@erase "$(INTDIR)\xtr.obj"
 -	-@erase "$(INTDIR)\xtrcrypt.obj"
 -	-@erase "$(INTDIR)\zdeflate.obj"
 -	-@erase "$(INTDIR)\zinflate.obj"
 -	-@erase "$(INTDIR)\zlib.obj"
 -	-@erase "$(OUTDIR)\cryptlib.lib"
 -	-@erase "adhoc.cpp.copied"
 -
 -"$(OUTDIR)" :
 -    if not exist "$(OUTDIR)/$(NULL)" mkdir "$(OUTDIR)"
 -
 -CPP=cl.exe
 -CPP_PROJ=/nologo /MDd /W3 /GX /Zi /Oi /D "_DEBUG" /D "_WINDOWS" /D "USE_PRECOMPILED_HEADERS" /D "WIN32" /Fp"$(INTDIR)\cryptlib.pch" /Yu"pch.h" /Fo"$(INTDIR)\\" /Fd"$(INTDIR)\\" /FD /Zm400 /c 
 -
 -.c{$(INTDIR)}.obj::
 -   $(CPP) @<<
 -   $(CPP_PROJ) $< 
 -<<
 -
 -.cpp{$(INTDIR)}.obj::
 -   $(CPP) @<<
 -   $(CPP_PROJ) $< 
 -<<
 -
 -.cxx{$(INTDIR)}.obj::
 -   $(CPP) @<<
 -   $(CPP_PROJ) $< 
 -<<
 -
 -.c{$(INTDIR)}.sbr::
 -   $(CPP) @<<
 -   $(CPP_PROJ) $< 
 -<<
 -
 -.cpp{$(INTDIR)}.sbr::
 -   $(CPP) @<<
 -   $(CPP_PROJ) $< 
 -<<
 -
 -.cxx{$(INTDIR)}.sbr::
 -   $(CPP) @<<
 -   $(CPP_PROJ) $< 
 -<<
 -
 -RSC=rc.exe
 -BSC32=bscmake.exe
 -BSC32_FLAGS=/nologo /o"$(OUTDIR)\cryptlib.bsc" 
 -BSC32_SBRS= \
 -	
 -LIB32=link.exe -lib
 -LIB32_FLAGS=/nologo /out:"$(OUTDIR)\cryptlib.lib" 
 -LIB32_OBJS= \
 -	"$(INTDIR)\3way.obj" \
 -	"$(INTDIR)\adler32.obj" \
 -	"$(INTDIR)\algebra.obj" \
 -	"$(INTDIR)\algparam.obj" \
 -	"$(INTDIR)\arc4.obj" \
 -	"$(INTDIR)\asn.obj" \
 -	"$(INTDIR)\base32.obj" \
 -	"$(INTDIR)\base64.obj" \
 -	"$(INTDIR)\basecode.obj" \
 -	"$(INTDIR)\bfinit.obj" \
 -	"$(INTDIR)\blowfish.obj" \
 -	"$(INTDIR)\blumshub.obj" \
 -	"$(INTDIR)\camellia.obj" \
 -	"$(INTDIR)\cast.obj" \
 -	"$(INTDIR)\casts.obj" \
 -	"$(INTDIR)\cbcmac.obj" \
 -	"$(INTDIR)\channels.obj" \
 -	"$(INTDIR)\cpu.obj" \
 -	"$(INTDIR)\crc.obj" \
 -	"$(INTDIR)\cryptlib.obj" \
 -	"$(INTDIR)\default.obj" \
 -	"$(INTDIR)\des.obj" \
 -	"$(INTDIR)\dessp.obj" \
 -	"$(INTDIR)\dh.obj" \
 -	"$(INTDIR)\dh2.obj" \
 -	"$(INTDIR)\dll.obj" \
 -	"$(INTDIR)\dsa.obj" \
 -	"$(INTDIR)\ec2n.obj" \
 -	"$(INTDIR)\eccrypto.obj" \
 -	"$(INTDIR)\ecp.obj" \
 -	"$(INTDIR)\elgamal.obj" \
 -	"$(INTDIR)\emsa2.obj" \
 -	"$(INTDIR)\eprecomp.obj" \
 -	"$(INTDIR)\esign.obj" \
 -	"$(INTDIR)\files.obj" \
 -	"$(INTDIR)\filters.obj" \
 -	"$(INTDIR)\fips140.obj" \
 -	"$(INTDIR)\fipstest.obj" \
 -	"$(INTDIR)\gf256.obj" \
 -	"$(INTDIR)\gf2_32.obj" \
 -	"$(INTDIR)\gf2n.obj" \
 -	"$(INTDIR)\gfpcrypt.obj" \
 -	"$(INTDIR)\gost.obj" \
 -	"$(INTDIR)\gzip.obj" \
 -	"$(INTDIR)\hex.obj" \
 -	"$(INTDIR)\hmac.obj" \
 -	"$(INTDIR)\hrtimer.obj" \
 -	"$(INTDIR)\ida.obj" \
 -	"$(INTDIR)\idea.obj" \
 -	"$(INTDIR)\integer.obj" \
 -	"$(INTDIR)\iterhash.obj" \
 -	"$(INTDIR)\luc.obj" \
 -	"$(INTDIR)\mars.obj" \
 -	"$(INTDIR)\marss.obj" \
 -	"$(INTDIR)\md2.obj" \
 -	"$(INTDIR)\md4.obj" \
 -	"$(INTDIR)\md5.obj" \
 -	"$(INTDIR)\misc.obj" \
 -	"$(INTDIR)\modes.obj" \
 -	"$(INTDIR)\mqueue.obj" \
 -	"$(INTDIR)\mqv.obj" \
 -	"$(INTDIR)\nbtheory.obj" \
 -	"$(INTDIR)\network.obj" \
 -	"$(INTDIR)\oaep.obj" \
 -	"$(INTDIR)\osrng.obj" \
 -	"$(INTDIR)\panama.obj" \
 -	"$(INTDIR)\pch.obj" \
 -	"$(INTDIR)\pkcspad.obj" \
 -	"$(INTDIR)\polynomi.obj" \
 -	"$(INTDIR)\pssr.obj" \
 -	"$(INTDIR)\pubkey.obj" \
 -	"$(INTDIR)\queue.obj" \
 -	"$(INTDIR)\rabin.obj" \
 -	"$(INTDIR)\randpool.obj" \
 -	"$(INTDIR)\rc2.obj" \
 -	"$(INTDIR)\rc5.obj" \
 -	"$(INTDIR)\rc6.obj" \
 -	"$(INTDIR)\rdtables.obj" \
 -	"$(INTDIR)\rijndael.obj" \
 -	"$(INTDIR)\ripemd.obj" \
 -	"$(INTDIR)\rng.obj" \
 -	"$(INTDIR)\rsa.obj" \
 -	"$(INTDIR)\rw.obj" \
 -	"$(INTDIR)\safer.obj" \
 -	"$(INTDIR)\salsa.obj" \
 -	"$(INTDIR)\seal.obj" \
 -	"$(INTDIR)\serpent.obj" \
 -	"$(INTDIR)\sha.obj" \
 -	"$(INTDIR)\shacal2.obj" \
 -	"$(INTDIR)\shark.obj" \
 -	"$(INTDIR)\sharkbox.obj" \
 -	"$(INTDIR)\simple.obj" \
 -	"$(INTDIR)\skipjack.obj" \
 -	"$(INTDIR)\socketft.obj" \
 -	"$(INTDIR)\sosemanuk.obj" \
 -	"$(INTDIR)\square.obj" \
 -	"$(INTDIR)\squaretb.obj" \
 -	"$(INTDIR)\strciphr.obj" \
 -	"$(INTDIR)\tea.obj" \
 -	"$(INTDIR)\tftables.obj" \
 -	"$(INTDIR)\tiger.obj" \
 -	"$(INTDIR)\tigertab.obj" \
 -	"$(INTDIR)\trdlocal.obj" \
 -	"$(INTDIR)\ttmac.obj" \
 -	"$(INTDIR)\twofish.obj" \
 -	"$(INTDIR)\vmac.obj" \
 -	"$(INTDIR)\wait.obj" \
 -	"$(INTDIR)\wake.obj" \
 -	"$(INTDIR)\whrlpool.obj" \
 -	"$(INTDIR)\winpipes.obj" \
 -	"$(INTDIR)\xtr.obj" \
 -	"$(INTDIR)\xtrcrypt.obj" \
 -	"$(INTDIR)\zdeflate.obj" \
 -	"$(INTDIR)\zinflate.obj" \
 -	"$(INTDIR)\zlib.obj"
 -
 -"$(OUTDIR)\cryptlib.lib" : "$(OUTDIR)" $(DEF_FILE) $(LIB32_OBJS)
 -    $(LIB32) @<<
 -  $(LIB32_FLAGS) $(DEF_FLAGS) $(LIB32_OBJS)
 -<<
 -
 -!ENDIF 
 -
 -
 -!IF "$(NO_EXTERNAL_DEPS)" != "1"
 -!IF EXISTS("cryptlib.dep")
 -!INCLUDE "cryptlib.dep"
 -!ELSE 
 -!MESSAGE Warning: cannot find "cryptlib.dep"
 -!ENDIF 
 -!ENDIF 
 -
 -
 -!IF "$(CFG)" == "cryptlib - Win32 DLL-Import Release" || "$(CFG)" == "cryptlib - Win32 DLL-Import Debug" || "$(CFG)" == "cryptlib - Win32 Release" || "$(CFG)" == "cryptlib - Win32 Debug"
 -SOURCE=.\3way.cpp
 -
 -"$(INTDIR)\3way.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\adhoc.cpp.proto
 -
 -!IF  "$(CFG)" == "cryptlib - Win32 DLL-Import Release"
 -
 -InputPath=.\adhoc.cpp.proto
 -
 -".\adhoc.cpp.copied" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
 -	<<tempfile.bat 
 -	@echo off 
 -	if not exist adhoc.cpp copy "$(InputPath)" adhoc.cpp 
 -	echo: >> adhoc.cpp.copied  -<< 
 -	
 -
 -!ELSEIF  "$(CFG)" == "cryptlib - Win32 DLL-Import Debug"
 -
 -InputPath=.\adhoc.cpp.proto
 -
 -".\adhoc.cpp.copied" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
 -	<<tempfile.bat 
 -	@echo off 
 -	if not exist adhoc.cpp copy "$(InputPath)" adhoc.cpp 
 -	echo: >> adhoc.cpp.copied  -<< 
 -	
 -
 -!ELSEIF  "$(CFG)" == "cryptlib - Win32 Release"
 -
 -InputPath=.\adhoc.cpp.proto
 -
 -".\adhoc.cpp.copied" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
 -	<<tempfile.bat 
 -	@echo off 
 -	if not exist adhoc.cpp copy "$(InputPath)" adhoc.cpp 
 -	echo: >> adhoc.cpp.copied  -<< 
 -	
 -
 -!ELSEIF  "$(CFG)" == "cryptlib - Win32 Debug"
 -
 -InputPath=.\adhoc.cpp.proto
 -
 -".\adhoc.cpp.copied" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
 -	<<tempfile.bat 
 -	@echo off 
 -	if not exist adhoc.cpp copy "$(InputPath)" adhoc.cpp 
 -	echo: >> adhoc.cpp.copied  -<< 
 -	
 -
 -!ENDIF 
 -
 -SOURCE=.\adler32.cpp
 -
 -"$(INTDIR)\adler32.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\algebra.cpp
 -
 -"$(INTDIR)\algebra.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\algparam.cpp
 -
 -"$(INTDIR)\algparam.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\arc4.cpp
 -
 -"$(INTDIR)\arc4.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\asn.cpp
 -
 -"$(INTDIR)\asn.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\base32.cpp
 -
 -"$(INTDIR)\base32.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\base64.cpp
 -
 -"$(INTDIR)\base64.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\basecode.cpp
 -
 -"$(INTDIR)\basecode.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\bfinit.cpp
 -
 -"$(INTDIR)\bfinit.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\blowfish.cpp
 -
 -"$(INTDIR)\blowfish.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\blumshub.cpp
 -
 -"$(INTDIR)\blumshub.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\camellia.cpp
 -
 -"$(INTDIR)\camellia.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\cast.cpp
 -
 -"$(INTDIR)\cast.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\casts.cpp
 -
 -"$(INTDIR)\casts.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\cbcmac.cpp
 -
 -"$(INTDIR)\cbcmac.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\channels.cpp
 -
 -"$(INTDIR)\channels.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\cpu.cpp
 -
 -"$(INTDIR)\cpu.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\crc.cpp
 -
 -"$(INTDIR)\crc.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\cryptlib.cpp
 -
 -"$(INTDIR)\cryptlib.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\default.cpp
 -
 -"$(INTDIR)\default.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\des.cpp
 -
 -"$(INTDIR)\des.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\dessp.cpp
 -
 -"$(INTDIR)\dessp.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\dh.cpp
 -
 -"$(INTDIR)\dh.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\dh2.cpp
 -
 -"$(INTDIR)\dh2.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\dll.cpp
 -
 -!IF  "$(CFG)" == "cryptlib - Win32 DLL-Import Release"
 -
 -CPP_SWITCHES=/nologo /G5 /Gz /MT /W3 /GX /Zi /O2 /Ob2 /D "NDEBUG" /D "_WINDOWS" /D "USE_PRECOMPILED_HEADERS" /D "WIN32" /D "CRYPTOPP_IMPORTS" /Fo"$(INTDIR)\\" /Fd"$(INTDIR)\\" /FD /Zm400 /c 
 -
 -"$(INTDIR)\dll.obj" : $(SOURCE) "$(INTDIR)"
 -	$(CPP) @<<
 -  $(CPP_SWITCHES) $(SOURCE)
 -<<
 -
 -
 -!ELSEIF  "$(CFG)" == "cryptlib - Win32 DLL-Import Debug"
 -
 -CPP_SWITCHES=/nologo /G5 /Gz /MTd /W3 /GX /Zi /Oi /D "_DEBUG" /D "_WINDOWS" /D "USE_PRECOMPILED_HEADERS" /D "WIN32" /D "CRYPTOPP_IMPORTS" /Fo"$(INTDIR)\\" /Fd"$(INTDIR)\\" /FD /Zm400 /c 
 -
 -"$(INTDIR)\dll.obj" : $(SOURCE) "$(INTDIR)"
 -	$(CPP) @<<
 -  $(CPP_SWITCHES) $(SOURCE)
 -<<
 -
 -
 -!ELSEIF  "$(CFG)" == "cryptlib - Win32 Release"
 -
 -CPP_SWITCHES=/nologo /MD /W3 /GX /Zi /O1 /D "NDEBUG" /D "_WINDOWS" /D "USE_PRECOMPILED_HEADERS" /D "WIN32" /Fo"$(INTDIR)\\" /Fd"$(INTDIR)\\" /FD /Zm400 /c 
 -
 -"$(INTDIR)\dll.obj" : $(SOURCE) "$(INTDIR)" ".\strciphr.cpp"
 -	$(CPP) @<<
 -  $(CPP_SWITCHES) $(SOURCE)
 -<<
 -
 -
 -!ELSEIF  "$(CFG)" == "cryptlib - Win32 Debug"
 -
 -CPP_SWITCHES=/nologo /MDd /W3 /GX /Zi /Oi /D "_DEBUG" /D "_WINDOWS" /D "USE_PRECOMPILED_HEADERS" /D "WIN32" /Fo"$(INTDIR)\\" /Fd"$(INTDIR)\\" /FD /Zm400 /c 
 -
 -"$(INTDIR)\dll.obj" : $(SOURCE) "$(INTDIR)"
 -	$(CPP) @<<
 -  $(CPP_SWITCHES) $(SOURCE)
 -<<
 -
 -
 -!ENDIF 
 -
 -SOURCE=.\dsa.cpp
 -
 -"$(INTDIR)\dsa.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\ec2n.cpp
 -
 -"$(INTDIR)\ec2n.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\eccrypto.cpp
 -
 -"$(INTDIR)\eccrypto.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\ecp.cpp
 -
 -"$(INTDIR)\ecp.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\elgamal.cpp
 -
 -"$(INTDIR)\elgamal.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\emsa2.cpp
 -
 -"$(INTDIR)\emsa2.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\eprecomp.cpp
 -
 -"$(INTDIR)\eprecomp.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\esign.cpp
 -
 -"$(INTDIR)\esign.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\files.cpp
 -
 -"$(INTDIR)\files.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\filters.cpp
 -
 -"$(INTDIR)\filters.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\fips140.cpp
 -
 -"$(INTDIR)\fips140.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\fipstest.cpp
 -
 -"$(INTDIR)\fipstest.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\gf256.cpp
 -
 -"$(INTDIR)\gf256.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\gf2_32.cpp
 -
 -"$(INTDIR)\gf2_32.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\gf2n.cpp
 -
 -"$(INTDIR)\gf2n.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\gfpcrypt.cpp
 -
 -"$(INTDIR)\gfpcrypt.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\gost.cpp
 -
 -"$(INTDIR)\gost.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\gzip.cpp
 -
 -"$(INTDIR)\gzip.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\hex.cpp
 -
 -"$(INTDIR)\hex.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\hmac.cpp
 -
 -"$(INTDIR)\hmac.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\hrtimer.cpp
 -
 -"$(INTDIR)\hrtimer.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\ida.cpp
 -
 -"$(INTDIR)\ida.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\idea.cpp
 -
 -"$(INTDIR)\idea.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\integer.cpp
 -
 -"$(INTDIR)\integer.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\iterhash.cpp
 -
 -"$(INTDIR)\iterhash.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\luc.cpp
 -
 -"$(INTDIR)\luc.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\mars.cpp
 -
 -"$(INTDIR)\mars.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\marss.cpp
 -
 -"$(INTDIR)\marss.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\md2.cpp
 -
 -"$(INTDIR)\md2.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\md4.cpp
 -
 -"$(INTDIR)\md4.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\md5.cpp
 -
 -"$(INTDIR)\md5.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\misc.cpp
 -
 -"$(INTDIR)\misc.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\modes.cpp
 -
 -"$(INTDIR)\modes.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\mqueue.cpp
 -
 -"$(INTDIR)\mqueue.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\mqv.cpp
 -
 -"$(INTDIR)\mqv.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\nbtheory.cpp
 -
 -"$(INTDIR)\nbtheory.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\network.cpp
 -
 -"$(INTDIR)\network.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\oaep.cpp
 -
 -"$(INTDIR)\oaep.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\osrng.cpp
 -
 -"$(INTDIR)\osrng.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\panama.cpp
 -
 -"$(INTDIR)\panama.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\pch.cpp
 -
 -!IF  "$(CFG)" == "cryptlib - Win32 DLL-Import Release"
 -
 -CPP_SWITCHES=/nologo /G5 /Gz /MT /W3 /GX /Zi /O2 /Ob2 /D "NDEBUG" /D "_WINDOWS" /D "USE_PRECOMPILED_HEADERS" /D "WIN32" /D "CRYPTOPP_IMPORTS" /Fp"$(INTDIR)\cryptlib.pch" /Yc"pch.h" /Fo"$(INTDIR)\\" /Fd"$(INTDIR)\\" /FD /Zm400 /c 
 -
 -"$(INTDIR)\pch.obj"	"$(INTDIR)\cryptlib.pch" : $(SOURCE) "$(INTDIR)"
 -	$(CPP) @<<
 -  $(CPP_SWITCHES) $(SOURCE)
 -<<
 -
 -
 -!ELSEIF  "$(CFG)" == "cryptlib - Win32 DLL-Import Debug"
 -
 -CPP_SWITCHES=/nologo /G5 /Gz /MTd /W3 /GX /Zi /Oi /D "_DEBUG" /D "_WINDOWS" /D "USE_PRECOMPILED_HEADERS" /D "WIN32" /D "CRYPTOPP_IMPORTS" /Fp"$(INTDIR)\cryptlib.pch" /Yc"pch.h" /Fo"$(INTDIR)\\" /Fd"$(INTDIR)\\" /FD /Zm400 /c 
 -
 -"$(INTDIR)\pch.obj"	"$(INTDIR)\cryptlib.pch" : $(SOURCE) "$(INTDIR)"
 -	$(CPP) @<<
 -  $(CPP_SWITCHES) $(SOURCE)
 -<<
 -
 -
 -!ELSEIF  "$(CFG)" == "cryptlib - Win32 Release"
 -
 -CPP_SWITCHES=/nologo /MD /W3 /GX /Zi /O1 /D "NDEBUG" /D "_WINDOWS" /D "USE_PRECOMPILED_HEADERS" /D "WIN32" /Fp"$(INTDIR)\cryptlib.pch" /Yc"pch.h" /Fo"$(INTDIR)\\" /Fd"$(INTDIR)\\" /FD /Zm400 /c 
 -
 -"$(INTDIR)\pch.obj"	"$(INTDIR)\cryptlib.pch" : $(SOURCE) "$(INTDIR)"
 -	$(CPP) @<<
 -  $(CPP_SWITCHES) $(SOURCE)
 -<<
 -
 -
 -!ELSEIF  "$(CFG)" == "cryptlib - Win32 Debug"
 -
 -CPP_SWITCHES=/nologo /MDd /W3 /GX /Zi /Oi /D "_DEBUG" /D "_WINDOWS" /D "USE_PRECOMPILED_HEADERS" /D "WIN32" /Fp"$(INTDIR)\cryptlib.pch" /Yc"pch.h" /Fo"$(INTDIR)\\" /Fd"$(INTDIR)\\" /FD /Zm400 /c 
 -
 -"$(INTDIR)\pch.obj"	"$(INTDIR)\cryptlib.pch" : $(SOURCE) "$(INTDIR)"
 -	$(CPP) @<<
 -  $(CPP_SWITCHES) $(SOURCE)
 -<<
 -
 -
 -!ENDIF 
 -
 -SOURCE=.\pkcspad.cpp
 -
 -"$(INTDIR)\pkcspad.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\polynomi.cpp
 -
 -"$(INTDIR)\polynomi.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\pssr.cpp
 -
 -"$(INTDIR)\pssr.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\pubkey.cpp
 -
 -"$(INTDIR)\pubkey.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\queue.cpp
 -
 -"$(INTDIR)\queue.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\rabin.cpp
 -
 -"$(INTDIR)\rabin.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\randpool.cpp
 -
 -"$(INTDIR)\randpool.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\rc2.cpp
 -
 -"$(INTDIR)\rc2.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\rc5.cpp
 -
 -"$(INTDIR)\rc5.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\rc6.cpp
 -
 -"$(INTDIR)\rc6.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\rdtables.cpp
 -
 -"$(INTDIR)\rdtables.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\rijndael.cpp
 -
 -"$(INTDIR)\rijndael.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\ripemd.cpp
 -
 -"$(INTDIR)\ripemd.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\rng.cpp
 -
 -"$(INTDIR)\rng.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\rsa.cpp
 -
 -"$(INTDIR)\rsa.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\rw.cpp
 -
 -"$(INTDIR)\rw.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\safer.cpp
 -
 -"$(INTDIR)\safer.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\salsa.cpp
 -
 -"$(INTDIR)\salsa.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\seal.cpp
 -
 -"$(INTDIR)\seal.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\serpent.cpp
 -
 -"$(INTDIR)\serpent.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\sha.cpp
 -
 -"$(INTDIR)\sha.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\shacal2.cpp
 -
 -"$(INTDIR)\shacal2.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\shark.cpp
 -
 -"$(INTDIR)\shark.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\sharkbox.cpp
 -
 -"$(INTDIR)\sharkbox.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\simple.cpp
 -
 -"$(INTDIR)\simple.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\skipjack.cpp
 -
 -"$(INTDIR)\skipjack.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\socketft.cpp
 -
 -"$(INTDIR)\socketft.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\sosemanuk.cpp
 -
 -"$(INTDIR)\sosemanuk.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\square.cpp
 -
 -"$(INTDIR)\square.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\squaretb.cpp
 -
 -"$(INTDIR)\squaretb.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\strciphr.cpp
 -
 -"$(INTDIR)\strciphr.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\tea.cpp
 -
 -"$(INTDIR)\tea.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\tftables.cpp
 -
 -"$(INTDIR)\tftables.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\tiger.cpp
 -
 -"$(INTDIR)\tiger.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\tigertab.cpp
 -
 -"$(INTDIR)\tigertab.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\trdlocal.cpp
 -
 -"$(INTDIR)\trdlocal.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\ttmac.cpp
 -
 -"$(INTDIR)\ttmac.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\twofish.cpp
 -
 -"$(INTDIR)\twofish.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\vmac.cpp
 -
 -"$(INTDIR)\vmac.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\wait.cpp
 -
 -"$(INTDIR)\wait.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\wake.cpp
 -
 -"$(INTDIR)\wake.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\whrlpool.cpp
 -
 -"$(INTDIR)\whrlpool.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\winpipes.cpp
 -
 -"$(INTDIR)\winpipes.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\xtr.cpp
 -
 -"$(INTDIR)\xtr.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\xtrcrypt.cpp
 -
 -"$(INTDIR)\xtrcrypt.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\zdeflate.cpp
 -
 -"$(INTDIR)\zdeflate.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\zinflate.cpp
 -
 -"$(INTDIR)\zinflate.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -SOURCE=.\zlib.cpp
 -
 -"$(INTDIR)\zlib.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptlib.pch"
 -
 -
 -
 -!ENDIF 
 -
 diff --git a/plugins/CryptoPP/crypto/cryptlib_9.vcproj b/plugins/CryptoPP/crypto/cryptlib_9.vcproj deleted file mode 100644 index e8383f8614..0000000000 --- a/plugins/CryptoPP/crypto/cryptlib_9.vcproj +++ /dev/null @@ -1,5012 +0,0 @@ -<?xml version="1.0" encoding="windows-1251"?>
 -<VisualStudioProject
 -	ProjectType="Visual C++"
 -	Version="9,00"
 -	Name="cryptlib"
 -	ProjectGUID="{290C5ED4-71A7-4040-AD26-4820CF7A9E60}"
 -	TargetFrameworkVersion="0"
 -	>
 -	<Platforms>
 -		<Platform
 -			Name="Win32"
 -		/>
 -	</Platforms>
 -	<ToolFiles>
 -	</ToolFiles>
 -	<Configurations>
 -		<Configuration
 -			Name="Release|Win32"
 -			OutputDirectory=".\Release9"
 -			IntermediateDirectory=".\Release9"
 -			ConfigurationType="4"
 -			InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops"
 -			UseOfMFC="0"
 -			ATLMinimizesCRunTimeLibraryUsage="false"
 -			WholeProgramOptimization="1"
 -			>
 -			<Tool
 -				Name="VCPreBuildEventTool"
 -			/>
 -			<Tool
 -				Name="VCCustomBuildTool"
 -			/>
 -			<Tool
 -				Name="VCXMLDataGeneratorTool"
 -			/>
 -			<Tool
 -				Name="VCWebServiceProxyGeneratorTool"
 -			/>
 -			<Tool
 -				Name="VCMIDLTool"
 -			/>
 -			<Tool
 -				Name="VCCLCompilerTool"
 -				AdditionalOptions="/Zm400 "
 -				Optimization="1"
 -				FavorSizeOrSpeed="2"
 -				PreprocessorDefinitions="NDEBUG;_WINDOWS;USE_PRECOMPILED_HEADERS;WIN32"
 -				StringPooling="true"
 -				RuntimeLibrary="2"
 -				EnableFunctionLevelLinking="true"
 -				RuntimeTypeInfo="false"
 -				UsePrecompiledHeader="2"
 -				PrecompiledHeaderThrough="pch.h"
 -				WarningLevel="3"
 -				SuppressStartupBanner="true"
 -				DebugInformationFormat="3"
 -			/>
 -			<Tool
 -				Name="VCManagedResourceCompilerTool"
 -			/>
 -			<Tool
 -				Name="VCResourceCompilerTool"
 -				Culture="1033"
 -			/>
 -			<Tool
 -				Name="VCPreLinkEventTool"
 -			/>
 -			<Tool
 -				Name="VCLibrarianTool"
 -				SuppressStartupBanner="true"
 -			/>
 -			<Tool
 -				Name="VCALinkTool"
 -			/>
 -			<Tool
 -				Name="VCXDCMakeTool"
 -			/>
 -			<Tool
 -				Name="VCBscMakeTool"
 -				SuppressStartupBanner="true"
 -			/>
 -			<Tool
 -				Name="VCFxCopTool"
 -			/>
 -			<Tool
 -				Name="VCPostBuildEventTool"
 -			/>
 -		</Configuration>
 -		<Configuration
 -			Name="DLL-Import Release|Win32"
 -			OutputDirectory=".\DLL_Import_Release"
 -			IntermediateDirectory=".\DLL_Import_Release"
 -			ConfigurationType="4"
 -			InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops"
 -			UseOfMFC="0"
 -			ATLMinimizesCRunTimeLibraryUsage="false"
 -			>
 -			<Tool
 -				Name="VCPreBuildEventTool"
 -			/>
 -			<Tool
 -				Name="VCCustomBuildTool"
 -			/>
 -			<Tool
 -				Name="VCXMLDataGeneratorTool"
 -			/>
 -			<Tool
 -				Name="VCWebServiceProxyGeneratorTool"
 -			/>
 -			<Tool
 -				Name="VCMIDLTool"
 -			/>
 -			<Tool
 -				Name="VCCLCompilerTool"
 -				AdditionalOptions="/Zm400 "
 -				Optimization="2"
 -				InlineFunctionExpansion="2"
 -				PreprocessorDefinitions="NDEBUG;_WINDOWS;USE_PRECOMPILED_HEADERS;WIN32;CRYPTOPP_IMPORTS"
 -				StringPooling="true"
 -				RuntimeLibrary="0"
 -				EnableFunctionLevelLinking="true"
 -				UsePrecompiledHeader="2"
 -				PrecompiledHeaderThrough="pch.h"
 -				PrecompiledHeaderFile=".\DLL_Import_Release/cryptlib.pch"
 -				AssemblerListingLocation=".\DLL_Import_Release/"
 -				ObjectFile=".\DLL_Import_Release/"
 -				ProgramDataBaseFileName=".\DLL_Import_Release/"
 -				WarningLevel="3"
 -				SuppressStartupBanner="true"
 -				DebugInformationFormat="3"
 -				CallingConvention="2"
 -			/>
 -			<Tool
 -				Name="VCManagedResourceCompilerTool"
 -			/>
 -			<Tool
 -				Name="VCResourceCompilerTool"
 -				Culture="1033"
 -			/>
 -			<Tool
 -				Name="VCPreLinkEventTool"
 -			/>
 -			<Tool
 -				Name="VCLibrarianTool"
 -				OutputFile=".\DLL_Import_Release\cryptlib.lib"
 -				SuppressStartupBanner="true"
 -			/>
 -			<Tool
 -				Name="VCALinkTool"
 -			/>
 -			<Tool
 -				Name="VCXDCMakeTool"
 -			/>
 -			<Tool
 -				Name="VCBscMakeTool"
 -				SuppressStartupBanner="true"
 -				OutputFile=".\DLL_Import_Release/cryptlib.bsc"
 -			/>
 -			<Tool
 -				Name="VCFxCopTool"
 -			/>
 -			<Tool
 -				Name="VCPostBuildEventTool"
 -			/>
 -		</Configuration>
 -		<Configuration
 -			Name="Debug|Win32"
 -			OutputDirectory=".\Debug9"
 -			IntermediateDirectory=".\Debug9"
 -			ConfigurationType="4"
 -			InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops"
 -			UseOfMFC="0"
 -			ATLMinimizesCRunTimeLibraryUsage="false"
 -			>
 -			<Tool
 -				Name="VCPreBuildEventTool"
 -			/>
 -			<Tool
 -				Name="VCCustomBuildTool"
 -			/>
 -			<Tool
 -				Name="VCXMLDataGeneratorTool"
 -			/>
 -			<Tool
 -				Name="VCWebServiceProxyGeneratorTool"
 -			/>
 -			<Tool
 -				Name="VCMIDLTool"
 -			/>
 -			<Tool
 -				Name="VCCLCompilerTool"
 -				AdditionalOptions="/Zm400 "
 -				EnableIntrinsicFunctions="true"
 -				PreprocessorDefinitions="_DEBUG;_WINDOWS;USE_PRECOMPILED_HEADERS;WIN32"
 -				RuntimeLibrary="3"
 -				UsePrecompiledHeader="2"
 -				PrecompiledHeaderThrough="pch.h"
 -				WarningLevel="3"
 -				SuppressStartupBanner="true"
 -				DebugInformationFormat="3"
 -			/>
 -			<Tool
 -				Name="VCManagedResourceCompilerTool"
 -			/>
 -			<Tool
 -				Name="VCResourceCompilerTool"
 -				Culture="1033"
 -			/>
 -			<Tool
 -				Name="VCPreLinkEventTool"
 -			/>
 -			<Tool
 -				Name="VCLibrarianTool"
 -				SuppressStartupBanner="true"
 -			/>
 -			<Tool
 -				Name="VCALinkTool"
 -			/>
 -			<Tool
 -				Name="VCXDCMakeTool"
 -			/>
 -			<Tool
 -				Name="VCBscMakeTool"
 -				SuppressStartupBanner="true"
 -			/>
 -			<Tool
 -				Name="VCFxCopTool"
 -			/>
 -			<Tool
 -				Name="VCPostBuildEventTool"
 -			/>
 -		</Configuration>
 -		<Configuration
 -			Name="DLL-Import Debug|Win32"
 -			OutputDirectory=".\DLL_Import_Debug"
 -			IntermediateDirectory=".\DLL_Import_Debug"
 -			ConfigurationType="4"
 -			InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops"
 -			UseOfMFC="0"
 -			ATLMinimizesCRunTimeLibraryUsage="false"
 -			>
 -			<Tool
 -				Name="VCPreBuildEventTool"
 -			/>
 -			<Tool
 -				Name="VCCustomBuildTool"
 -			/>
 -			<Tool
 -				Name="VCXMLDataGeneratorTool"
 -			/>
 -			<Tool
 -				Name="VCWebServiceProxyGeneratorTool"
 -			/>
 -			<Tool
 -				Name="VCMIDLTool"
 -			/>
 -			<Tool
 -				Name="VCCLCompilerTool"
 -				AdditionalOptions="/Zm400 "
 -				EnableIntrinsicFunctions="true"
 -				PreprocessorDefinitions="_DEBUG;_WINDOWS;USE_PRECOMPILED_HEADERS;WIN32;CRYPTOPP_IMPORTS"
 -				RuntimeLibrary="1"
 -				UsePrecompiledHeader="2"
 -				PrecompiledHeaderThrough="pch.h"
 -				PrecompiledHeaderFile=".\DLL_Import_Debug/cryptlib.pch"
 -				AssemblerListingLocation=".\DLL_Import_Debug/"
 -				ObjectFile=".\DLL_Import_Debug/"
 -				ProgramDataBaseFileName=".\DLL_Import_Debug/"
 -				WarningLevel="3"
 -				SuppressStartupBanner="true"
 -				DebugInformationFormat="3"
 -				CallingConvention="2"
 -			/>
 -			<Tool
 -				Name="VCManagedResourceCompilerTool"
 -			/>
 -			<Tool
 -				Name="VCResourceCompilerTool"
 -				Culture="1033"
 -			/>
 -			<Tool
 -				Name="VCPreLinkEventTool"
 -			/>
 -			<Tool
 -				Name="VCLibrarianTool"
 -				OutputFile=".\DLL_Import_Debug\cryptlib.lib"
 -				SuppressStartupBanner="true"
 -			/>
 -			<Tool
 -				Name="VCALinkTool"
 -			/>
 -			<Tool
 -				Name="VCXDCMakeTool"
 -			/>
 -			<Tool
 -				Name="VCBscMakeTool"
 -				SuppressStartupBanner="true"
 -				OutputFile=".\DLL_Import_Debug/cryptlib.bsc"
 -			/>
 -			<Tool
 -				Name="VCFxCopTool"
 -			/>
 -			<Tool
 -				Name="VCPostBuildEventTool"
 -			/>
 -		</Configuration>
 -	</Configurations>
 -	<References>
 -	</References>
 -	<Files>
 -		<Filter
 -			Name="Source Files"
 -			Filter=".cpp"
 -			>
 -			<File
 -				RelativePath="3way.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="adhoc.cpp.proto"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCustomBuildTool"
 -						CommandLine="if not exist adhoc.cpp copy "$(InputPath)" adhoc.cpp
echo: >> adhoc.cpp.copied
"
 -						Outputs="adhoc.cpp.copied"
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCustomBuildTool"
 -						CommandLine="if not exist adhoc.cpp copy "$(InputPath)" adhoc.cpp
echo: >> adhoc.cpp.copied
"
 -						Outputs="adhoc.cpp.copied"
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCustomBuildTool"
 -						CommandLine="if not exist adhoc.cpp copy "$(InputPath)" adhoc.cpp
echo: >> adhoc.cpp.copied
"
 -						Outputs="adhoc.cpp.copied"
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCustomBuildTool"
 -						CommandLine="if not exist adhoc.cpp copy "$(InputPath)" adhoc.cpp
echo: >> adhoc.cpp.copied
"
 -						Outputs="adhoc.cpp.copied"
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="adler32.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="algebra.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="algparam.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="arc4.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="asn.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="base32.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="base64.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="basecode.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="bfinit.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="blowfish.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="blumshub.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="camellia.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="cast.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="casts.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="cbcmac.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="channels.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="cpu.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="crc.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="cryptlib.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="default.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="des.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="dessp.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="dh.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="dh2.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="dll.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -						UsePrecompiledHeader="0"
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -						UsePrecompiledHeader="0"
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -						UsePrecompiledHeader="0"
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -						UsePrecompiledHeader="0"
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="dsa.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="ec2n.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="eccrypto.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="ecp.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="elgamal.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="emsa2.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="eprecomp.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="esign.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="files.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="filters.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="fips140.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="fipstest.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="gf256.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="gf2_32.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="gf2n.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="gfpcrypt.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="gost.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="gzip.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="hex.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="hmac.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="hrtimer.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="ida.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="idea.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="integer.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="iterhash.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="luc.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="mars.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="marss.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="md2.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="md4.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="md5.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="misc.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="modes.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="mqueue.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="mqv.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="nbtheory.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="network.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="oaep.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="osrng.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="panama.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="pch.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -						UsePrecompiledHeader="1"
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -						UsePrecompiledHeader="1"
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -						UsePrecompiledHeader="1"
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -						UsePrecompiledHeader="1"
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="pkcspad.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="polynomi.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="pssr.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="pubkey.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="queue.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="rabin.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="randpool.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="rc2.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="rc5.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="rc6.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="rdtables.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="rijndael.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="ripemd.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="rng.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="rsa.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="rw.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="safer.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="salsa.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="seal.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="serpent.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="sha.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="shacal2.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="shark.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="sharkbox.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="simple.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="skipjack.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="socketft.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="sosemanuk.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="square.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="squaretb.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="strciphr.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="tea.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="tftables.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="tiger.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="tigertab.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="trdlocal.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="ttmac.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="twofish.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="vmac.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="wait.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="wake.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="whrlpool.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="winpipes.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="xtr.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="xtrcrypt.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="zdeflate.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="zinflate.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="zlib.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="DLL-Import Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -		</Filter>
 -		<Filter
 -			Name="Header Files"
 -			Filter=".;.h"
 -			>
 -			<File
 -				RelativePath="3way.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="adler32.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="aes.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="algebra.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="algparam.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="arc4.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="argnames.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="asn.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="base32.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="base64.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="basecode.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="blowfish.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="blumshub.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="camellia.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="cast.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="cbcmac.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="channels.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="config.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="crc.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="cryptlib.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="default.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="des.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="dh.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="dh2.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="dmac.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="dsa.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="dword.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="ec2n.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="eccrypto.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="ecp.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="elgamal.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="emsa2.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="eprecomp.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="esign.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="factory.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="files.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="filters.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="fips140.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="fltrimpl.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="gf256.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="gf2_32.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="gf2n.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="gfpcrypt.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="gost.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="gzip.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="hex.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="hmac.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="hrtimer.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="ida.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="idea.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="integer.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="iterhash.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="lubyrack.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="luc.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="mars.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="md2.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="md4.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="md5.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="mdc.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="misc.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="modarith.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="modes.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="modexppc.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="mqueue.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="mqv.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="nbtheory.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="network.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="nr.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="oaep.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="oids.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="osrng.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="panama.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="pch.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="pkcspad.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="polynomi.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="pssr.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="pubkey.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="pwdbased.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="queue.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="rabin.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="randpool.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="rc2.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="rc5.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="rc6.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="rijndael.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="ripemd.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="rng.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="rsa.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="rw.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="safer.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="salsa.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="seal.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="secblock.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="seckey.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="serpent.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="sha.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="shacal2.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="shark.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="simple.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="skipjack.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="smartptr.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="socketft.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="square.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="strciphr.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="tea.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="tiger.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="trdlocal.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="trunhash.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="ttmac.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="twofish.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="wait.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="wake.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="whrlpool.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="winpipes.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="words.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="xtr.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="xtrcrypt.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="zdeflate.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="zinflate.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="zlib.h"
 -				>
 -			</File>
 -		</Filter>
 -		<Filter
 -			Name="Miscellaneous"
 -			>
 -			<File
 -				RelativePath="Doxyfile"
 -				>
 -			</File>
 -			<File
 -				RelativePath="GNUmakefile"
 -				>
 -			</File>
 -			<File
 -				RelativePath="license.txt"
 -				>
 -			</File>
 -			<File
 -				RelativePath="readme.txt"
 -				>
 -			</File>
 -		</Filter>
 -	</Files>
 -	<Globals>
 -	</Globals>
 -</VisualStudioProject>
 diff --git a/plugins/CryptoPP/crypto/dlltest.dsp b/plugins/CryptoPP/crypto/dlltest.dsp deleted file mode 100644 index d69f75c835..0000000000 --- a/plugins/CryptoPP/crypto/dlltest.dsp +++ /dev/null @@ -1,90 +0,0 @@ -# Microsoft Developer Studio Project File - Name="dlltest" - Package Owner=<4>
 -# Microsoft Developer Studio Generated Build File, Format Version 6.00
 -# ** DO NOT EDIT **
 -
 -# TARGTYPE "Win32 (x86) Console Application" 0x0103
 -
 -CFG=dlltest - Win32 Debug
 -!MESSAGE This is not a valid makefile. To build this project using NMAKE,
 -!MESSAGE use the Export Makefile command and run
 -!MESSAGE 
 -!MESSAGE NMAKE /f "dlltest.mak".
 -!MESSAGE 
 -!MESSAGE You can specify a configuration when running NMAKE
 -!MESSAGE by defining the macro CFG on the command line. For example:
 -!MESSAGE 
 -!MESSAGE NMAKE /f "dlltest.mak" CFG="dlltest - Win32 Debug"
 -!MESSAGE 
 -!MESSAGE Possible choices for configuration are:
 -!MESSAGE 
 -!MESSAGE "dlltest - Win32 Release" (based on "Win32 (x86) Console Application")
 -!MESSAGE "dlltest - Win32 Debug" (based on "Win32 (x86) Console Application")
 -!MESSAGE 
 -
 -# Begin Project
 -# PROP AllowPerConfigDependencies 0
 -# PROP Scc_ProjName ""
 -# PROP Scc_LocalPath ""
 -CPP=cl.exe
 -RSC=rc.exe
 -
 -!IF  "$(CFG)" == "dlltest - Win32 Release"
 -
 -# PROP BASE Use_MFC 0
 -# PROP BASE Use_Debug_Libraries 0
 -# PROP BASE Output_Dir "dlltest___Win32_Release"
 -# PROP BASE Intermediate_Dir "dlltest___Win32_Release"
 -# PROP BASE Target_Dir ""
 -# PROP Use_MFC 0
 -# PROP Use_Debug_Libraries 0
 -# PROP Output_Dir "dlltest___Win32_Release"
 -# PROP Intermediate_Dir "dlltest___Win32_Release"
 -# PROP Ignore_Export_Lib 0
 -# PROP Target_Dir ""
 -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
 -# ADD CPP /nologo /Gz /MT /W3 /GX /Zi /O1 /Ob2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "CRYPTOPP_DLL_ONLY" /YX /FD /c
 -# ADD BASE RSC /l 0x409 /d "NDEBUG"
 -# ADD RSC /l 0x409 /d "NDEBUG"
 -BSC32=bscmake.exe
 -# ADD BASE BSC32 /nologo
 -# ADD BSC32 /nologo
 -LINK32=link.exe
 -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
 -# ADD LINK32 /nologo /subsystem:console /map /debug /machine:I386 /out:"DLL_Release/dlltest.exe" /libpath:"DLL_Release"
 -
 -!ELSEIF  "$(CFG)" == "dlltest - Win32 Debug"
 -
 -# PROP BASE Use_MFC 0
 -# PROP BASE Use_Debug_Libraries 1
 -# PROP BASE Output_Dir "dlltest___Win32_Debug"
 -# PROP BASE Intermediate_Dir "dlltest___Win32_Debug"
 -# PROP BASE Target_Dir ""
 -# PROP Use_MFC 0
 -# PROP Use_Debug_Libraries 1
 -# PROP Output_Dir "dlltest___Win32_Debug"
 -# PROP Intermediate_Dir "dlltest___Win32_Debug"
 -# PROP Ignore_Export_Lib 0
 -# PROP Target_Dir ""
 -# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c
 -# ADD CPP /nologo /Gz /MTd /W3 /Gm /GX /Zi /Oi /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /D "CRYPTOPP_DLL_ONLY" /YX /FD /GZ /c
 -# ADD BASE RSC /l 0x409 /d "_DEBUG"
 -# ADD RSC /l 0x409 /d "_DEBUG"
 -BSC32=bscmake.exe
 -# ADD BASE BSC32 /nologo
 -# ADD BSC32 /nologo
 -LINK32=link.exe
 -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
 -# ADD LINK32 /nologo /subsystem:console /debug /machine:I386 /out:"DLL_Debug/dlltest.exe" /pdbtype:sept /libpath:"DLL_Debug"
 -
 -!ENDIF 
 -
 -# Begin Target
 -
 -# Name "dlltest - Win32 Release"
 -# Name "dlltest - Win32 Debug"
 -# Begin Source File
 -
 -SOURCE=.\dlltest.cpp
 -# End Source File
 -# End Target
 -# End Project
 diff --git a/plugins/CryptoPP/crypto/pubkey.h b/plugins/CryptoPP/crypto/pubkey.h index 0d45ea3c13..51743ef797 100644 --- a/plugins/CryptoPP/crypto/pubkey.h +++ b/plugins/CryptoPP/crypto/pubkey.h @@ -240,7 +240,7 @@ public:  		{
  			static HashIdentifier CRYPTOPP_API Lookup()
  			{
 -				return HashIdentifier(NULL, 0);
 +				return HashIdentifier((const byte*)NULL, 0);
  			}
  		};
  	};
 diff --git a/plugins/CryptoPP/crypto/zdeflate.cpp b/plugins/CryptoPP/crypto/zdeflate.cpp index e2b60ee109..099226bab8 100644 --- a/plugins/CryptoPP/crypto/zdeflate.cpp +++ b/plugins/CryptoPP/crypto/zdeflate.cpp @@ -384,13 +384,7 @@ unsigned int Deflator::LongestMatch(unsigned int &bestMatch) const  		if (scan[bestLength-1] == match[bestLength-1] && scan[bestLength] == match[bestLength] && scan[0] == match[0] && scan[1] == match[1])
  		{
  			assert(scan[2] == match[2]);
 -			unsigned int len = (unsigned int)(
 -#if defined(_STDEXT_BEGIN) && !(defined(_MSC_VER) && _MSC_VER < 1400) && !defined(_STLPORT_VERSION)
 -				stdext::unchecked_mismatch
 -#else
 -				std::mismatch
 -#endif
 -				(scan+3, scanEnd, match+3).first - scan);
 +			unsigned int len = (unsigned int)(std::mismatch(scan+3, scanEnd, match+3).first - scan);
  			assert(len != bestLength);
  			if (len > bestLength)
  			{
 diff --git a/plugins/CryptoPP/cryptopp.dep b/plugins/CryptoPP/cryptopp.dep deleted file mode 100644 index 57466bcbcd..0000000000 --- a/plugins/CryptoPP/cryptopp.dep +++ /dev/null @@ -1,80 +0,0 @@ -# Microsoft Developer Studio Generated Dependency File, included by cryptopp.mak
 -
 -.\commonheaders.cpp : \
 -	"..\..\include\m_database.h"\
 -	"..\..\include\m_netlib.h"\
 -	"..\..\include\m_plugins.h"\
 -	"..\..\include\m_protocols.h"\
 -	"..\..\include\m_protomod.h"\
 -	"..\..\include\m_protosvc.h"\
 -	"..\..\include\m_stdhdr.h"\
 -	"..\..\include\m_system.h"\
 -	"..\..\include\m_utils.h"\
 -	"..\..\include\newpluginapi.h"\
 -	"..\..\include\statusmodes.h"\
 -	".\base16.h"\
 -	".\base64.h"\
 -	".\commonheaders.h"\
 -	".\cpp_rsam.h"\
 -	".\cpp_rsau.h"\
 -	".\crypto\adler32.h"\
 -	".\crypto\aes.h"\
 -	".\crypto\algebra.h"\
 -	".\crypto\algparam.h"\
 -	".\crypto\argnames.h"\
 -	".\crypto\asn.h"\
 -	".\crypto\config.h"\
 -	".\crypto\crc.h"\
 -	".\crypto\cryptlib.h"\
 -	".\crypto\dh.h"\
 -	".\crypto\emsa2.h"\
 -	".\crypto\eprecomp.h"\
 -	".\crypto\files.h"\
 -	".\crypto\filters.h"\
 -	".\crypto\fips140.h"\
 -	".\crypto\gfpcrypt.h"\
 -	".\crypto\gzip.h"\
 -	".\crypto\hmac.h"\
 -	".\crypto\integer.h"\
 -	".\crypto\iterhash.h"\
 -	".\crypto\misc.h"\
 -	".\crypto\modarith.h"\
 -	".\crypto\modes.h"\
 -	".\crypto\modexppc.h"\
 -	".\crypto\oaep.h"\
 -	".\crypto\osrng.h"\
 -	".\crypto\pkcspad.h"\
 -	".\crypto\pubkey.h"\
 -	".\crypto\randpool.h"\
 -	".\crypto\rijndael.h"\
 -	".\crypto\ripemd.h"\
 -	".\crypto\rng.h"\
 -	".\crypto\rsa.h"\
 -	".\crypto\secblock.h"\
 -	".\crypto\seckey.h"\
 -	".\crypto\sha.h"\
 -	".\crypto\simple.h"\
 -	".\crypto\smartptr.h"\
 -	".\crypto\stdcpp.h"\
 -	".\crypto\strciphr.h"\
 -	".\crypto\tiger.h"\
 -	".\crypto\zdeflate.h"\
 -	".\crypto\zinflate.h"\
 -	".\crypto\zlib.h"\
 -	".\cryptopp.h"\
 -	".\dllloader.h"\
 -	".\gettime.h"\
 -	".\mmi.h"\
 -	".\sdk\m_updater.h"\
 -	".\utf8.h"\
 -	".\version.h"\
 -	"d:\program files\microsoft visual studio\vc98\include\basetsd.h"\
 -	
 -
 -.\resource.rc : \
 -	".\gpgw\release\gnupgw.dll"\
 -	".\pgpw\release6\pgpsdkw6.dll"\
 -	".\pgpw\release8\pgpsdkw8.dll"\
 -	".\version.h"\
 -	".\version.rc"\
 -	
 diff --git a/plugins/CryptoPP/cryptopp.dsp b/plugins/CryptoPP/cryptopp.dsp deleted file mode 100644 index 3b418e6dff..0000000000 --- a/plugins/CryptoPP/cryptopp.dsp +++ /dev/null @@ -1,233 +0,0 @@ -# Microsoft Developer Studio Project File - Name="cryptopp" - Package Owner=<4>
 -# Microsoft Developer Studio Generated Build File, Format Version 6.00
 -# ** DO NOT EDIT **
 -
 -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102
 -
 -CFG=cryptopp - Win32 Release
 -!MESSAGE This is not a valid makefile. To build this project using NMAKE,
 -!MESSAGE use the Export Makefile command and run
 -!MESSAGE 
 -!MESSAGE NMAKE /f "cryptopp.mak".
 -!MESSAGE 
 -!MESSAGE You can specify a configuration when running NMAKE
 -!MESSAGE by defining the macro CFG on the command line. For example:
 -!MESSAGE 
 -!MESSAGE NMAKE /f "cryptopp.mak" CFG="cryptopp - Win32 Release"
 -!MESSAGE 
 -!MESSAGE Possible choices for configuration are:
 -!MESSAGE 
 -!MESSAGE "cryptopp - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library")
 -!MESSAGE "cryptopp - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library")
 -!MESSAGE 
 -
 -# Begin Project
 -# PROP AllowPerConfigDependencies 0
 -# PROP Scc_ProjName ""
 -# PROP Scc_LocalPath ""
 -CPP=cl.exe
 -MTL=midl.exe
 -RSC=rc.exe
 -
 -!IF  "$(CFG)" == "cryptopp - Win32 Release"
 -
 -# PROP BASE Use_MFC 0
 -# PROP BASE Use_Debug_Libraries 0
 -# PROP BASE Output_Dir "Release"
 -# PROP BASE Intermediate_Dir "Release"
 -# PROP BASE Target_Dir ""
 -# PROP Use_MFC 0
 -# PROP Use_Debug_Libraries 0
 -# PROP Output_Dir "Release"
 -# PROP Intermediate_Dir "Release"
 -# PROP Ignore_Export_Lib 0
 -# PROP Target_Dir ""
 -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "CRYPTOPP_EXPORTS" /YX /FD /c
 -# ADD CPP /nologo /MD /W3 /GX /O1 /I "\source\include" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /Yu"commonheaders.h" /FD /c
 -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32
 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32
 -# ADD BASE RSC /l 0x419 /d "NDEBUG"
 -# ADD RSC /l 0x419 /d "NDEBUG"
 -BSC32=bscmake.exe
 -# ADD BASE BSC32 /nologo
 -# ADD BSC32 /nologo
 -LINK32=link.exe
 -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /machine:I386
 -# ADD LINK32 kernel32.lib user32.lib gdi32.lib comdlg32.lib advapi32.lib shell32.lib uuid.lib /nologo /base:"0x46000000" /dll /map /machine:I386
 -# SUBTRACT LINK32 /pdb:none /incremental:yes
 -
 -!ELSEIF  "$(CFG)" == "cryptopp - Win32 Debug"
 -
 -# PROP BASE Use_MFC 0
 -# PROP BASE Use_Debug_Libraries 1
 -# PROP BASE Output_Dir "Debug"
 -# PROP BASE Intermediate_Dir "Debug"
 -# PROP BASE Target_Dir ""
 -# PROP Use_MFC 0
 -# PROP Use_Debug_Libraries 1
 -# PROP Output_Dir "Debug"
 -# PROP Intermediate_Dir "Debug"
 -# PROP Ignore_Export_Lib 0
 -# PROP Target_Dir ""
 -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "CRYPTOPP_EXPORTS" /YX /FD /GZ /c
 -# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "\source\include" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "CRYPTOPP_EXPORTS" /YX"commonheaders.h" /FD /GZ /c
 -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32
 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32
 -# ADD BASE RSC /l 0x419 /d "_DEBUG"
 -# ADD RSC /l 0x419 /d "_DEBUG"
 -BSC32=bscmake.exe
 -# ADD BASE BSC32 /nologo
 -# ADD BSC32 /nologo
 -LINK32=link.exe
 -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept
 -# ADD LINK32 kernel32.lib user32.lib gdi32.lib comdlg32.lib advapi32.lib shell32.lib uuid.lib /nologo /base:"0x46000000" /dll /debug /machine:I386 /pdbtype:sept
 -
 -!ENDIF 
 -
 -# Begin Target
 -
 -# Name "cryptopp - Win32 Release"
 -# Name "cryptopp - Win32 Debug"
 -# Begin Group "Source Files"
 -
 -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
 -# Begin Source File
 -
 -SOURCE=.\base16.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\base64.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\commonheaders.cpp
 -
 -!IF  "$(CFG)" == "cryptopp - Win32 Release"
 -
 -# ADD CPP /Yc"commonheaders.h"
 -
 -!ELSEIF  "$(CFG)" == "cryptopp - Win32 Debug"
 -
 -!ENDIF 
 -
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\cpp_cntx.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\cpp_gpgw.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\cpp_gzip.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\cpp_keys.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\cpp_misc.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\cpp_pgpw.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\cpp_rsam.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\cpp_rsau.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\cpp_svcs.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\dllloader.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\gettime.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\main.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\mmi.cpp
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\utf8.cpp
 -# End Source File
 -# End Group
 -# Begin Group "Header Files"
 -
 -# PROP Default_Filter "h;hpp;hxx;hm;inl"
 -# Begin Source File
 -
 -SOURCE=.\base16.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\base64.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\commonheaders.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\cpp_rsam.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\cpp_rsau.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\cryptopp.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\dllloader.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\gettime.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\mmi.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\resource.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\utf8.h
 -# End Source File
 -# Begin Source File
 -
 -SOURCE=.\version.h
 -# End Source File
 -# End Group
 -# Begin Group "Resource Files"
 -
 -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
 -# Begin Source File
 -
 -SOURCE=.\resource.rc
 -# End Source File
 -# End Group
 -# End Target
 -# End Project
 diff --git a/plugins/CryptoPP/cryptopp.dsw b/plugins/CryptoPP/cryptopp.dsw deleted file mode 100644 index 53b280e677..0000000000 --- a/plugins/CryptoPP/cryptopp.dsw +++ /dev/null @@ -1,44 +0,0 @@ -Microsoft Developer Studio Workspace File, Format Version 6.00
 -# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
 -
 -###############################################################################
 -
 -Project: "cryptopp"=.\cryptopp.dsp - Package Owner=<4>
 -
 -Package=<5>
 -{{{
 -}}}
 -
 -Package=<4>
 -{{{
 -    Begin Project Dependency
 -    Project_Dep_Name cryptlib
 -    End Project Dependency
 -}}}
 -###############################################################################
 -
 -Project: "cryptlib"=.\crypto\cryptlib.dsp - Package Owner=<4>
 -
 -Package=<5>
 -{{{
 -}}}
 -
 -Package=<4>
 -{{{
 -}}}
 -
 -
 -###############################################################################
 -
 -Global:
 -
 -Package=<5>
 -{{{
 -}}}
 -
 -Package=<3>
 -{{{
 -}}}
 -
 -###############################################################################
 -
 diff --git a/plugins/CryptoPP/cryptopp.mak b/plugins/CryptoPP/cryptopp.mak deleted file mode 100644 index 7c3cd9a882..0000000000 --- a/plugins/CryptoPP/cryptopp.mak +++ /dev/null @@ -1,420 +0,0 @@ -# Microsoft Developer Studio Generated NMAKE File, Based on cryptopp.dsp
 -!IF "$(CFG)" == ""
 -CFG=cryptopp - Win32 Release
 -!MESSAGE No configuration specified. Defaulting to cryptopp - Win32 Release.
 -!ENDIF 
 -
 -!IF "$(CFG)" != "cryptopp - Win32 Release" && "$(CFG)" != "cryptopp - Win32 Debug"
 -!MESSAGE Invalid configuration "$(CFG)" specified.
 -!MESSAGE You can specify a configuration when running NMAKE
 -!MESSAGE by defining the macro CFG on the command line. For example:
 -!MESSAGE 
 -!MESSAGE NMAKE /f "cryptopp.mak" CFG="cryptopp - Win32 Release"
 -!MESSAGE 
 -!MESSAGE Possible choices for configuration are:
 -!MESSAGE 
 -!MESSAGE "cryptopp - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library")
 -!MESSAGE "cryptopp - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library")
 -!MESSAGE 
 -!ERROR An invalid configuration is specified.
 -!ENDIF 
 -
 -!IF "$(OS)" == "Windows_NT"
 -NULL=
 -!ELSE 
 -NULL=nul
 -!ENDIF 
 -
 -!IF  "$(CFG)" == "cryptopp - Win32 Release"
 -
 -OUTDIR=.\Release
 -INTDIR=.\Release
 -# Begin Custom Macros
 -OutDir=.\Release
 -# End Custom Macros
 -
 -!IF "$(RECURSE)" == "0" 
 -
 -ALL : "$(OUTDIR)\cryptopp.dll"
 -
 -!ELSE 
 -
 -ALL : "cryptlib - Win32 Release" "$(OUTDIR)\cryptopp.dll"
 -
 -!ENDIF 
 -
 -!IF "$(RECURSE)" == "1" 
 -CLEAN :"cryptlib - Win32 ReleaseCLEAN" 
 -!ELSE 
 -CLEAN :
 -!ENDIF 
 -	-@erase "$(INTDIR)\base16.obj"
 -	-@erase "$(INTDIR)\base64.obj"
 -	-@erase "$(INTDIR)\commonheaders.obj"
 -	-@erase "$(INTDIR)\cpp_cntx.obj"
 -	-@erase "$(INTDIR)\cpp_gpgw.obj"
 -	-@erase "$(INTDIR)\cpp_gzip.obj"
 -	-@erase "$(INTDIR)\cpp_keys.obj"
 -	-@erase "$(INTDIR)\cpp_misc.obj"
 -	-@erase "$(INTDIR)\cpp_pgpw.obj"
 -	-@erase "$(INTDIR)\cpp_rsam.obj"
 -	-@erase "$(INTDIR)\cpp_rsau.obj"
 -	-@erase "$(INTDIR)\cpp_svcs.obj"
 -	-@erase "$(INTDIR)\cryptopp.pch"
 -	-@erase "$(INTDIR)\dllloader.obj"
 -	-@erase "$(INTDIR)\gettime.obj"
 -	-@erase "$(INTDIR)\main.obj"
 -	-@erase "$(INTDIR)\mmi.obj"
 -	-@erase "$(INTDIR)\resource.res"
 -	-@erase "$(INTDIR)\utf8.obj"
 -	-@erase "$(INTDIR)\vc60.idb"
 -	-@erase "$(OUTDIR)\cryptopp.dll"
 -	-@erase "$(OUTDIR)\cryptopp.exp"
 -	-@erase "$(OUTDIR)\cryptopp.lib"
 -	-@erase "$(OUTDIR)\cryptopp.map"
 -
 -"$(OUTDIR)" :
 -    if not exist "$(OUTDIR)/$(NULL)" mkdir "$(OUTDIR)"
 -
 -CPP=cl.exe
 -CPP_PROJ=/nologo /MD /W3 /GX /O1 /I "\source\include" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /Fp"$(INTDIR)\cryptopp.pch" /Yu"commonheaders.h" /Fo"$(INTDIR)\\" /Fd"$(INTDIR)\\" /FD /c 
 -
 -.c{$(INTDIR)}.obj::
 -   $(CPP) @<<
 -   $(CPP_PROJ) $< 
 -<<
 -
 -.cpp{$(INTDIR)}.obj::
 -   $(CPP) @<<
 -   $(CPP_PROJ) $< 
 -<<
 -
 -.cxx{$(INTDIR)}.obj::
 -   $(CPP) @<<
 -   $(CPP_PROJ) $< 
 -<<
 -
 -.c{$(INTDIR)}.sbr::
 -   $(CPP) @<<
 -   $(CPP_PROJ) $< 
 -<<
 -
 -.cpp{$(INTDIR)}.sbr::
 -   $(CPP) @<<
 -   $(CPP_PROJ) $< 
 -<<
 -
 -.cxx{$(INTDIR)}.sbr::
 -   $(CPP) @<<
 -   $(CPP_PROJ) $< 
 -<<
 -
 -MTL=midl.exe
 -MTL_PROJ=/nologo /D "NDEBUG" /mktyplib203 /win32 
 -RSC=rc.exe
 -RSC_PROJ=/l 0x419 /fo"$(INTDIR)\resource.res" /d "NDEBUG" 
 -BSC32=bscmake.exe
 -BSC32_FLAGS=/nologo /o"$(OUTDIR)\cryptopp.bsc" 
 -BSC32_SBRS= \
 -	
 -LINK32=link.exe
 -LINK32_FLAGS=kernel32.lib user32.lib gdi32.lib comdlg32.lib advapi32.lib shell32.lib uuid.lib /nologo /base:"0x46000000" /dll /incremental:no /pdb:"$(OUTDIR)\cryptopp.pdb" /map:"$(INTDIR)\cryptopp.map" /machine:I386 /out:"$(OUTDIR)\cryptopp.dll" /implib:"$(OUTDIR)\cryptopp.lib" 
 -LINK32_OBJS= \
 -	"$(INTDIR)\base16.obj" \
 -	"$(INTDIR)\base64.obj" \
 -	"$(INTDIR)\commonheaders.obj" \
 -	"$(INTDIR)\cpp_cntx.obj" \
 -	"$(INTDIR)\cpp_gpgw.obj" \
 -	"$(INTDIR)\cpp_gzip.obj" \
 -	"$(INTDIR)\cpp_keys.obj" \
 -	"$(INTDIR)\cpp_misc.obj" \
 -	"$(INTDIR)\cpp_pgpw.obj" \
 -	"$(INTDIR)\cpp_rsam.obj" \
 -	"$(INTDIR)\cpp_rsau.obj" \
 -	"$(INTDIR)\cpp_svcs.obj" \
 -	"$(INTDIR)\dllloader.obj" \
 -	"$(INTDIR)\gettime.obj" \
 -	"$(INTDIR)\main.obj" \
 -	"$(INTDIR)\mmi.obj" \
 -	"$(INTDIR)\utf8.obj" \
 -	"$(INTDIR)\resource.res" \
 -	".\crypto\Release\cryptlib.lib"
 -
 -"$(OUTDIR)\cryptopp.dll" : "$(OUTDIR)" $(DEF_FILE) $(LINK32_OBJS)
 -    $(LINK32) @<<
 -  $(LINK32_FLAGS) $(LINK32_OBJS)
 -<<
 -
 -!ELSEIF  "$(CFG)" == "cryptopp - Win32 Debug"
 -
 -OUTDIR=.\Debug
 -INTDIR=.\Debug
 -# Begin Custom Macros
 -OutDir=.\Debug
 -# End Custom Macros
 -
 -!IF "$(RECURSE)" == "0" 
 -
 -ALL : "$(OUTDIR)\cryptopp.dll"
 -
 -!ELSE 
 -
 -ALL : "cryptlib - Win32 Debug" "$(OUTDIR)\cryptopp.dll"
 -
 -!ENDIF 
 -
 -!IF "$(RECURSE)" == "1" 
 -CLEAN :"cryptlib - Win32 DebugCLEAN" 
 -!ELSE 
 -CLEAN :
 -!ENDIF 
 -	-@erase "$(INTDIR)\base16.obj"
 -	-@erase "$(INTDIR)\base64.obj"
 -	-@erase "$(INTDIR)\commonheaders.obj"
 -	-@erase "$(INTDIR)\cpp_cntx.obj"
 -	-@erase "$(INTDIR)\cpp_gpgw.obj"
 -	-@erase "$(INTDIR)\cpp_gzip.obj"
 -	-@erase "$(INTDIR)\cpp_keys.obj"
 -	-@erase "$(INTDIR)\cpp_misc.obj"
 -	-@erase "$(INTDIR)\cpp_pgpw.obj"
 -	-@erase "$(INTDIR)\cpp_rsam.obj"
 -	-@erase "$(INTDIR)\cpp_rsau.obj"
 -	-@erase "$(INTDIR)\cpp_svcs.obj"
 -	-@erase "$(INTDIR)\dllloader.obj"
 -	-@erase "$(INTDIR)\gettime.obj"
 -	-@erase "$(INTDIR)\main.obj"
 -	-@erase "$(INTDIR)\mmi.obj"
 -	-@erase "$(INTDIR)\resource.res"
 -	-@erase "$(INTDIR)\utf8.obj"
 -	-@erase "$(INTDIR)\vc60.idb"
 -	-@erase "$(INTDIR)\vc60.pdb"
 -	-@erase "$(OUTDIR)\cryptopp.dll"
 -	-@erase "$(OUTDIR)\cryptopp.exp"
 -	-@erase "$(OUTDIR)\cryptopp.ilk"
 -	-@erase "$(OUTDIR)\cryptopp.lib"
 -	-@erase "$(OUTDIR)\cryptopp.pdb"
 -
 -"$(OUTDIR)" :
 -    if not exist "$(OUTDIR)/$(NULL)" mkdir "$(OUTDIR)"
 -
 -CPP=cl.exe
 -CPP_PROJ=/nologo /MDd /W3 /Gm /GX /ZI /Od /I "\source\include" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "CRYPTOPP_EXPORTS" /Fp"$(INTDIR)\cryptopp.pch" /YX"commonheaders.h" /Fo"$(INTDIR)\\" /Fd"$(INTDIR)\\" /FD /GZ /c 
 -
 -.c{$(INTDIR)}.obj::
 -   $(CPP) @<<
 -   $(CPP_PROJ) $< 
 -<<
 -
 -.cpp{$(INTDIR)}.obj::
 -   $(CPP) @<<
 -   $(CPP_PROJ) $< 
 -<<
 -
 -.cxx{$(INTDIR)}.obj::
 -   $(CPP) @<<
 -   $(CPP_PROJ) $< 
 -<<
 -
 -.c{$(INTDIR)}.sbr::
 -   $(CPP) @<<
 -   $(CPP_PROJ) $< 
 -<<
 -
 -.cpp{$(INTDIR)}.sbr::
 -   $(CPP) @<<
 -   $(CPP_PROJ) $< 
 -<<
 -
 -.cxx{$(INTDIR)}.sbr::
 -   $(CPP) @<<
 -   $(CPP_PROJ) $< 
 -<<
 -
 -MTL=midl.exe
 -MTL_PROJ=/nologo /D "_DEBUG" /mktyplib203 /win32 
 -RSC=rc.exe
 -RSC_PROJ=/l 0x419 /fo"$(INTDIR)\resource.res" /d "_DEBUG" 
 -BSC32=bscmake.exe
 -BSC32_FLAGS=/nologo /o"$(OUTDIR)\cryptopp.bsc" 
 -BSC32_SBRS= \
 -	
 -LINK32=link.exe
 -LINK32_FLAGS=kernel32.lib user32.lib gdi32.lib comdlg32.lib advapi32.lib shell32.lib uuid.lib /nologo /base:"0x46000000" /dll /incremental:yes /pdb:"$(OUTDIR)\cryptopp.pdb" /debug /machine:I386 /out:"$(OUTDIR)\cryptopp.dll" /implib:"$(OUTDIR)\cryptopp.lib" /pdbtype:sept 
 -LINK32_OBJS= \
 -	"$(INTDIR)\base16.obj" \
 -	"$(INTDIR)\base64.obj" \
 -	"$(INTDIR)\commonheaders.obj" \
 -	"$(INTDIR)\cpp_cntx.obj" \
 -	"$(INTDIR)\cpp_gpgw.obj" \
 -	"$(INTDIR)\cpp_gzip.obj" \
 -	"$(INTDIR)\cpp_keys.obj" \
 -	"$(INTDIR)\cpp_misc.obj" \
 -	"$(INTDIR)\cpp_pgpw.obj" \
 -	"$(INTDIR)\cpp_rsam.obj" \
 -	"$(INTDIR)\cpp_rsau.obj" \
 -	"$(INTDIR)\cpp_svcs.obj" \
 -	"$(INTDIR)\dllloader.obj" \
 -	"$(INTDIR)\gettime.obj" \
 -	"$(INTDIR)\main.obj" \
 -	"$(INTDIR)\mmi.obj" \
 -	"$(INTDIR)\utf8.obj" \
 -	"$(INTDIR)\resource.res" \
 -	".\crypto\Debug\cryptlib.lib"
 -
 -"$(OUTDIR)\cryptopp.dll" : "$(OUTDIR)" $(DEF_FILE) $(LINK32_OBJS)
 -    $(LINK32) @<<
 -  $(LINK32_FLAGS) $(LINK32_OBJS)
 -<<
 -
 -!ENDIF 
 -
 -
 -!IF "$(NO_EXTERNAL_DEPS)" != "1"
 -!IF EXISTS("cryptopp.dep")
 -!INCLUDE "cryptopp.dep"
 -!ELSE 
 -!MESSAGE Warning: cannot find "cryptopp.dep"
 -!ENDIF 
 -!ENDIF 
 -
 -
 -!IF "$(CFG)" == "cryptopp - Win32 Release" || "$(CFG)" == "cryptopp - Win32 Debug"
 -SOURCE=.\base16.cpp
 -
 -"$(INTDIR)\base16.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptopp.pch"
 -
 -
 -SOURCE=.\base64.cpp
 -
 -"$(INTDIR)\base64.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptopp.pch"
 -
 -
 -SOURCE=.\commonheaders.cpp
 -
 -!IF  "$(CFG)" == "cryptopp - Win32 Release"
 -
 -CPP_SWITCHES=/nologo /MD /W3 /GX /O1 /I "\source\include" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /Fp"$(INTDIR)\cryptopp.pch" /Yc"commonheaders.h" /Fo"$(INTDIR)\\" /Fd"$(INTDIR)\\" /FD /c 
 -
 -"$(INTDIR)\commonheaders.obj"	"$(INTDIR)\cryptopp.pch" : $(SOURCE) "$(INTDIR)"
 -	$(CPP) @<<
 -  $(CPP_SWITCHES) $(SOURCE)
 -<<
 -
 -
 -!ELSEIF  "$(CFG)" == "cryptopp - Win32 Debug"
 -
 -CPP_SWITCHES=/nologo /MDd /W3 /Gm /GX /ZI /Od /I "\source\include" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "CRYPTOPP_EXPORTS" /Fp"$(INTDIR)\cryptopp.pch" /YX"commonheaders.h" /Fo"$(INTDIR)\\" /Fd"$(INTDIR)\\" /FD /GZ /c 
 -
 -"$(INTDIR)\commonheaders.obj" : $(SOURCE) "$(INTDIR)"
 -	$(CPP) @<<
 -  $(CPP_SWITCHES) $(SOURCE)
 -<<
 -
 -
 -!ENDIF 
 -
 -SOURCE=.\cpp_cntx.cpp
 -
 -"$(INTDIR)\cpp_cntx.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptopp.pch"
 -
 -
 -SOURCE=.\cpp_gpgw.cpp
 -
 -"$(INTDIR)\cpp_gpgw.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptopp.pch"
 -
 -
 -SOURCE=.\cpp_gzip.cpp
 -
 -"$(INTDIR)\cpp_gzip.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptopp.pch"
 -
 -
 -SOURCE=.\cpp_keys.cpp
 -
 -"$(INTDIR)\cpp_keys.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptopp.pch"
 -
 -
 -SOURCE=.\cpp_misc.cpp
 -
 -"$(INTDIR)\cpp_misc.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptopp.pch"
 -
 -
 -SOURCE=.\cpp_pgpw.cpp
 -
 -"$(INTDIR)\cpp_pgpw.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptopp.pch"
 -
 -
 -SOURCE=.\cpp_rsam.cpp
 -
 -"$(INTDIR)\cpp_rsam.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptopp.pch"
 -
 -
 -SOURCE=.\cpp_rsau.cpp
 -
 -"$(INTDIR)\cpp_rsau.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptopp.pch"
 -
 -
 -SOURCE=.\cpp_svcs.cpp
 -
 -"$(INTDIR)\cpp_svcs.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptopp.pch"
 -
 -
 -SOURCE=.\dllloader.cpp
 -
 -"$(INTDIR)\dllloader.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptopp.pch"
 -
 -
 -SOURCE=.\gettime.cpp
 -
 -"$(INTDIR)\gettime.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptopp.pch"
 -
 -
 -SOURCE=.\main.cpp
 -
 -"$(INTDIR)\main.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptopp.pch"
 -
 -
 -SOURCE=.\mmi.cpp
 -
 -"$(INTDIR)\mmi.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptopp.pch"
 -
 -
 -SOURCE=.\utf8.cpp
 -
 -"$(INTDIR)\utf8.obj" : $(SOURCE) "$(INTDIR)" "$(INTDIR)\cryptopp.pch"
 -
 -
 -SOURCE=.\resource.rc
 -
 -"$(INTDIR)\resource.res" : $(SOURCE) "$(INTDIR)"
 -	$(RSC) $(RSC_PROJ) $(SOURCE)
 -
 -
 -!IF  "$(CFG)" == "cryptopp - Win32 Release"
 -
 -"cryptlib - Win32 Release" : 
 -   cd ".\crypto"
 -   $(MAKE) /$(MAKEFLAGS) /F .\cryptlib.mak CFG="cryptlib - Win32 Release" 
 -   cd ".."
 -
 -"cryptlib - Win32 ReleaseCLEAN" : 
 -   cd ".\crypto"
 -   $(MAKE) /$(MAKEFLAGS) /F .\cryptlib.mak CFG="cryptlib - Win32 Release" RECURSE=1 CLEAN 
 -   cd ".."
 -
 -!ELSEIF  "$(CFG)" == "cryptopp - Win32 Debug"
 -
 -"cryptlib - Win32 Debug" : 
 -   cd ".\crypto"
 -   $(MAKE) /$(MAKEFLAGS) /F .\cryptlib.mak CFG="cryptlib - Win32 Debug" 
 -   cd ".."
 -
 -"cryptlib - Win32 DebugCLEAN" : 
 -   cd ".\crypto"
 -   $(MAKE) /$(MAKEFLAGS) /F .\cryptlib.mak CFG="cryptlib - Win32 Debug" RECURSE=1 CLEAN 
 -   cd ".."
 -
 -!ENDIF 
 -
 -
 -!ENDIF 
 -
 diff --git a/plugins/CryptoPP/cryptopp_9.sln b/plugins/CryptoPP/cryptopp_9.sln deleted file mode 100644 index 9589bf3df3..0000000000 --- a/plugins/CryptoPP/cryptopp_9.sln +++ /dev/null @@ -1,28 +0,0 @@ -Microsoft Visual Studio Solution File, Format Version 10.00
 -# Visual Studio 2008
 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "cryptlib", "crypto\cryptlib_9.vcproj", "{290C5ED4-71A7-4040-AD26-4820CF7A9E60}"
 -EndProject
 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "cryptopp", "cryptopp_9.vcproj", "{4AC1E062-0236-4E49-AA04-F732043D2DCF}"
 -	ProjectSection(ProjectDependencies) = postProject
 -		{290C5ED4-71A7-4040-AD26-4820CF7A9E60} = {290C5ED4-71A7-4040-AD26-4820CF7A9E60}
 -	EndProjectSection
 -EndProject
 -Global
 -	GlobalSection(SolutionConfigurationPlatforms) = preSolution
 -		Debug|Win32 = Debug|Win32
 -		Release|Win32 = Release|Win32
 -	EndGlobalSection
 -	GlobalSection(ProjectConfigurationPlatforms) = postSolution
 -		{290C5ED4-71A7-4040-AD26-4820CF7A9E60}.Debug|Win32.ActiveCfg = Debug|Win32
 -		{290C5ED4-71A7-4040-AD26-4820CF7A9E60}.Debug|Win32.Build.0 = Debug|Win32
 -		{290C5ED4-71A7-4040-AD26-4820CF7A9E60}.Release|Win32.ActiveCfg = Release|Win32
 -		{290C5ED4-71A7-4040-AD26-4820CF7A9E60}.Release|Win32.Build.0 = Release|Win32
 -		{4AC1E062-0236-4E49-AA04-F732043D2DCF}.Debug|Win32.ActiveCfg = Debug|Win32
 -		{4AC1E062-0236-4E49-AA04-F732043D2DCF}.Debug|Win32.Build.0 = Debug|Win32
 -		{4AC1E062-0236-4E49-AA04-F732043D2DCF}.Release|Win32.ActiveCfg = Release|Win32
 -		{4AC1E062-0236-4E49-AA04-F732043D2DCF}.Release|Win32.Build.0 = Release|Win32
 -	EndGlobalSection
 -	GlobalSection(SolutionProperties) = preSolution
 -		HideSolutionNode = FALSE
 -	EndGlobalSection
 -EndGlobal
 diff --git a/plugins/CryptoPP/cryptopp_9.vcproj b/plugins/CryptoPP/cryptopp_9.vcproj deleted file mode 100644 index fb7a174c39..0000000000 --- a/plugins/CryptoPP/cryptopp_9.vcproj +++ /dev/null @@ -1,656 +0,0 @@ -<?xml version="1.0" encoding="windows-1251"?>
 -<VisualStudioProject
 -	ProjectType="Visual C++"
 -	Version="9,00"
 -	Name="cryptopp"
 -	ProjectGUID="{4AC1E062-0236-4E49-AA04-F732043D2DCF}"
 -	RootNamespace="cryptopp"
 -	TargetFrameworkVersion="0"
 -	>
 -	<Platforms>
 -		<Platform
 -			Name="Win32"
 -		/>
 -	</Platforms>
 -	<ToolFiles>
 -	</ToolFiles>
 -	<Configurations>
 -		<Configuration
 -			Name="Debug|Win32"
 -			OutputDirectory=".\Debug9"
 -			IntermediateDirectory=".\Debug9"
 -			ConfigurationType="2"
 -			UseOfMFC="0"
 -			ATLMinimizesCRunTimeLibraryUsage="false"
 -			CharacterSet="2"
 -			>
 -			<Tool
 -				Name="VCPreBuildEventTool"
 -			/>
 -			<Tool
 -				Name="VCCustomBuildTool"
 -			/>
 -			<Tool
 -				Name="VCXMLDataGeneratorTool"
 -			/>
 -			<Tool
 -				Name="VCWebServiceProxyGeneratorTool"
 -			/>
 -			<Tool
 -				Name="VCMIDLTool"
 -				PreprocessorDefinitions="_DEBUG"
 -				MkTypLibCompatible="true"
 -				SuppressStartupBanner="true"
 -				TargetEnvironment="1"
 -				HeaderFileName=""
 -			/>
 -			<Tool
 -				Name="VCCLCompilerTool"
 -				Optimization="0"
 -				AdditionalIncludeDirectories="..\..\include"
 -				PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_USRDLL;CRYPTOPP_EXPORTS"
 -				MinimalRebuild="true"
 -				RuntimeLibrary="3"
 -				PrecompiledHeaderThrough="commonheades.h"
 -				WarningLevel="3"
 -				SuppressStartupBanner="true"
 -				DebugInformationFormat="4"
 -			/>
 -			<Tool
 -				Name="VCManagedResourceCompilerTool"
 -			/>
 -			<Tool
 -				Name="VCResourceCompilerTool"
 -				PreprocessorDefinitions="_DEBUG"
 -				Culture="1049"
 -			/>
 -			<Tool
 -				Name="VCPreLinkEventTool"
 -			/>
 -			<Tool
 -				Name="VCLinkerTool"
 -				LinkIncremental="2"
 -				SuppressStartupBanner="true"
 -				GenerateDebugInformation="true"
 -				AssemblyDebug="1"
 -				GenerateMapFile="true"
 -				MapExports="true"
 -				BaseAddress="0x46000000"
 -				RandomizedBaseAddress="1"
 -			/>
 -			<Tool
 -				Name="VCALinkTool"
 -			/>
 -			<Tool
 -				Name="VCManifestTool"
 -			/>
 -			<Tool
 -				Name="VCXDCMakeTool"
 -			/>
 -			<Tool
 -				Name="VCBscMakeTool"
 -				SuppressStartupBanner="true"
 -			/>
 -			<Tool
 -				Name="VCFxCopTool"
 -			/>
 -			<Tool
 -				Name="VCAppVerifierTool"
 -			/>
 -			<Tool
 -				Name="VCPostBuildEventTool"
 -			/>
 -		</Configuration>
 -		<Configuration
 -			Name="Release|Win32"
 -			OutputDirectory=".\Release9"
 -			IntermediateDirectory=".\Release9"
 -			ConfigurationType="2"
 -			UseOfMFC="0"
 -			ATLMinimizesCRunTimeLibraryUsage="false"
 -			CharacterSet="2"
 -			WholeProgramOptimization="1"
 -			>
 -			<Tool
 -				Name="VCPreBuildEventTool"
 -			/>
 -			<Tool
 -				Name="VCCustomBuildTool"
 -			/>
 -			<Tool
 -				Name="VCXMLDataGeneratorTool"
 -			/>
 -			<Tool
 -				Name="VCWebServiceProxyGeneratorTool"
 -			/>
 -			<Tool
 -				Name="VCMIDLTool"
 -				PreprocessorDefinitions="NDEBUG"
 -				MkTypLibCompatible="true"
 -				SuppressStartupBanner="true"
 -				TargetEnvironment="1"
 -				HeaderFileName=""
 -			/>
 -			<Tool
 -				Name="VCCLCompilerTool"
 -				Optimization="1"
 -				FavorSizeOrSpeed="2"
 -				AdditionalIncludeDirectories="..\..\include"
 -				PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS"
 -				StringPooling="true"
 -				RuntimeLibrary="2"
 -				EnableFunctionLevelLinking="true"
 -				RuntimeTypeInfo="false"
 -				UsePrecompiledHeader="2"
 -				PrecompiledHeaderThrough="commonheaders.h"
 -				WarningLevel="3"
 -				SuppressStartupBanner="true"
 -			/>
 -			<Tool
 -				Name="VCManagedResourceCompilerTool"
 -			/>
 -			<Tool
 -				Name="VCResourceCompilerTool"
 -				PreprocessorDefinitions="NDEBUG"
 -				Culture="1049"
 -			/>
 -			<Tool
 -				Name="VCPreLinkEventTool"
 -			/>
 -			<Tool
 -				Name="VCLinkerTool"
 -				SuppressStartupBanner="true"
 -				GenerateMapFile="true"
 -				MapExports="true"
 -				BaseAddress="0x46000000"
 -				RandomizedBaseAddress="1"
 -			/>
 -			<Tool
 -				Name="VCALinkTool"
 -			/>
 -			<Tool
 -				Name="VCManifestTool"
 -			/>
 -			<Tool
 -				Name="VCXDCMakeTool"
 -			/>
 -			<Tool
 -				Name="VCBscMakeTool"
 -				SuppressStartupBanner="true"
 -			/>
 -			<Tool
 -				Name="VCFxCopTool"
 -			/>
 -			<Tool
 -				Name="VCAppVerifierTool"
 -			/>
 -			<Tool
 -				Name="VCPostBuildEventTool"
 -			/>
 -		</Configuration>
 -	</Configurations>
 -	<References>
 -	</References>
 -	<Files>
 -		<Filter
 -			Name="Source Files"
 -			Filter="cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
 -			>
 -			<File
 -				RelativePath="base16.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						AdditionalIncludeDirectories=""
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						AdditionalIncludeDirectories=""
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="base64.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						AdditionalIncludeDirectories=""
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						AdditionalIncludeDirectories=""
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="commonheaders.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						AdditionalIncludeDirectories=""
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						AdditionalIncludeDirectories=""
 -						PreprocessorDefinitions=""
 -						UsePrecompiledHeader="1"
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="cpp_cntx.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						AdditionalIncludeDirectories=""
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						AdditionalIncludeDirectories=""
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="cpp_gpgw.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						AdditionalIncludeDirectories=""
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						AdditionalIncludeDirectories=""
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="cpp_gzip.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						AdditionalIncludeDirectories=""
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						AdditionalIncludeDirectories=""
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="cpp_keys.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						AdditionalIncludeDirectories=""
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						AdditionalIncludeDirectories=""
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="cpp_misc.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						AdditionalIncludeDirectories=""
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						AdditionalIncludeDirectories=""
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="cpp_pgpw.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						AdditionalIncludeDirectories=""
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						AdditionalIncludeDirectories=""
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="cpp_rsam.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						AdditionalIncludeDirectories=""
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						AdditionalIncludeDirectories=""
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="cpp_rsau.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						AdditionalIncludeDirectories=""
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						AdditionalIncludeDirectories=""
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="cpp_svcs.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						AdditionalIncludeDirectories=""
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						AdditionalIncludeDirectories=""
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="dllloader.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						AdditionalIncludeDirectories=""
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						AdditionalIncludeDirectories=""
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="gettime.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						AdditionalIncludeDirectories=""
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						AdditionalIncludeDirectories=""
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="main.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						AdditionalIncludeDirectories=""
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						AdditionalIncludeDirectories=""
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="mmi.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						AdditionalIncludeDirectories=""
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						AdditionalIncludeDirectories=""
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -			<File
 -				RelativePath="utf8.cpp"
 -				>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						AdditionalIncludeDirectories=""
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCCLCompilerTool"
 -						AdditionalIncludeDirectories=""
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -		</Filter>
 -		<Filter
 -			Name="Header Files"
 -			Filter="h;hpp;hxx;hm;inl"
 -			>
 -			<File
 -				RelativePath="base16.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="base64.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="commonheaders.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath=".\cpp_rsam.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath=".\cpp_rsau.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="cryptopp.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="dllloader.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath=".\gettime.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="mmi.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="resource.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath=".\utf8.h"
 -				>
 -			</File>
 -			<File
 -				RelativePath="version.h"
 -				>
 -			</File>
 -		</Filter>
 -		<Filter
 -			Name="Resource Files"
 -			Filter="ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
 -			>
 -			<File
 -				RelativePath="resource.rc"
 -				>
 -				<FileConfiguration
 -					Name="Debug|Win32"
 -					>
 -					<Tool
 -						Name="VCResourceCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -				<FileConfiguration
 -					Name="Release|Win32"
 -					>
 -					<Tool
 -						Name="VCResourceCompilerTool"
 -						PreprocessorDefinitions=""
 -					/>
 -				</FileConfiguration>
 -			</File>
 -		</Filter>
 -	</Files>
 -	<Globals>
 -	</Globals>
 -</VisualStudioProject>
 diff --git a/plugins/CryptoPP/main.cpp b/plugins/CryptoPP/main.cpp index b3adb93153..8f3d89aa34 100644 --- a/plugins/CryptoPP/main.cpp +++ b/plugins/CryptoPP/main.cpp @@ -3,10 +3,11 @@  int hLangpack;
  // dllmain
 -BOOL WINAPI DllMain(HINSTANCE hInst, DWORD dwReason, LPVOID) {
 -	g_hInst = hInst;
 +BOOL WINAPI DllMain(HINSTANCE hInst, DWORD dwReason, LPVOID)
 +{
  	if ( dwReason == DLL_PROCESS_ATTACH ) {
 -		{
 +		g_hInst = hInst;
 +	
  		char temp[MAX_PATH];
  		GetTempPath(sizeof(temp),temp);
  		GetLongPathName(temp,TEMP,sizeof(TEMP));
 @@ -15,7 +16,6 @@ BOOL WINAPI DllMain(HINSTANCE hInst, DWORD dwReason, LPVOID) {  			TEMP_SIZE--;
  			TEMP[TEMP_SIZE]='\0';
  		}
 -		}
  		InitializeCriticalSection(&localQueueMutex);
  		InitializeCriticalSection(&localContextMutex);
  #ifdef _DEBUG
 @@ -38,19 +38,15 @@ MUUID* MirandaPluginInterfaces(void)  	return interfaces;
  }
 -
 -int onModulesLoaded(WPARAM wParam,LPARAM lParam) {
 -    // updater plugin support
 +int onModulesLoaded(WPARAM wParam,LPARAM lParam)
 +{
 +	// updater plugin support
  #if defined(_DEBUG) || defined(NETLIB_LOG)
  	InitNetlib();
  #endif
 -	if(ServiceExists(MS_UPDATE_REGISTERFL)) {
 -		CallService(MS_UPDATE_REGISTERFL, (WPARAM)2669, (LPARAM)&pluginInfo);
 -	}
  	return 0;
  }
 -
  int Load(PLUGINLINK *link)
  {
  	DisableThreadLibraryCalls(g_hInst);
  | 
