forked from evpobr/DcpCrypt2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
DCPcppbuilder5.cpp
50 lines (47 loc) · 1.63 KB
/
DCPcppbuilder5.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
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;
}
//---------------------------------------------------------------------------