mirror of
https://github.com/StephenGenusa/DCPCrypt.git
synced 2025-06-12 21:57:27 +02:00
Initial Commit with XE7 Package Files added
DCPCrypt by David Barton updated and tested with Delphi 2009, 2010, XE, XE2, XE3, XE4, XE5 by Warren Postma. Updated for XE7 by Stephen Genusa.
This commit is contained in:
50
DCPcppbuilder5.cpp
Normal file
50
DCPcppbuilder5.cpp
Normal file
@ -0,0 +1,50 @@
|
||||
//---------------------------------------------------------------------------
|
||||
|
||||
#include <vcl.h>
|
||||
#pragma hdrstop
|
||||
USERES("DCPcppbuilder5.res");
|
||||
USEPACKAGE("vcl50.bpi");
|
||||
USEUNIT("DCPbase64.pas");
|
||||
USEUNIT("DCPblockciphers.pas");
|
||||
USEUNIT("DCPconst.pas");
|
||||
USEUNIT("DCPcrypt2.pas");
|
||||
USEUNIT("DCPreg.pas");
|
||||
USEUNIT("Ciphers\DCPblowfish.pas");
|
||||
USEUNIT("Ciphers\DCPcast128.pas");
|
||||
USEUNIT("Ciphers\DCPcast256.pas");
|
||||
USEUNIT("Ciphers\DCPdes.pas");
|
||||
USEUNIT("Ciphers\DCPgost.pas");
|
||||
USEUNIT("Ciphers\DCPice.pas");
|
||||
USEUNIT("Ciphers\DCPidea.pas");
|
||||
USEUNIT("Ciphers\DCPmars.pas");
|
||||
USEUNIT("Ciphers\DCPmisty1.pas");
|
||||
USEUNIT("Ciphers\DCPrc2.pas");
|
||||
USEUNIT("Ciphers\DCPrc4.pas");
|
||||
USEUNIT("Ciphers\DCPrc5.pas");
|
||||
USEUNIT("Ciphers\DCPrc6.pas");
|
||||
USEUNIT("Ciphers\DCPrijndael.pas");
|
||||
USEUNIT("Ciphers\DCPserpent.pas");
|
||||
USEUNIT("Ciphers\DCPtea.pas");
|
||||
USEUNIT("Ciphers\DCPtwofish.pas");
|
||||
USEUNIT("Hashes\DCPhaval.pas");
|
||||
USEUNIT("Hashes\DCPmd4.pas");
|
||||
USEUNIT("Hashes\DCPmd5.pas");
|
||||
USEUNIT("Hashes\DCPripemd128.pas");
|
||||
USEUNIT("Hashes\DCPripemd160.pas");
|
||||
USEUNIT("Hashes\DCPsha1.pas");
|
||||
USEUNIT("Hashes\DCPsha256.pas");
|
||||
USEUNIT("Hashes\DCPsha512.pas");
|
||||
USEUNIT("Hashes\DCPtiger.pas");
|
||||
//---------------------------------------------------------------------------
|
||||
#pragma package(smart_init)
|
||||
//---------------------------------------------------------------------------
|
||||
|
||||
// Package source.
|
||||
//---------------------------------------------------------------------------
|
||||
|
||||
#pragma argsused
|
||||
int WINAPI DllEntryPoint(HINSTANCE hinst, unsigned long reason, void*)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
//---------------------------------------------------------------------------
|
Reference in New Issue
Block a user