1
0
mirror of https://github.com/StephenGenusa/DCPCrypt.git synced 2024-11-13 16:20:24 +02:00
DCPCrypt/DCPdelphi2009.dpk
Stephen Genusa 5fc435d45f 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.
2015-03-08 18:30:34 -05:00

65 lines
1.7 KiB
ObjectPascal

package DCPdelphi2009;
{$R *.res}
{$ALIGN 8}
{$ASSERTIONS ON}
{$BOOLEVAL OFF}
{$DEBUGINFO ON}
{$EXTENDEDSYNTAX ON}
{$IMPORTEDDATA ON}
{$IOCHECKS ON}
{$LOCALSYMBOLS ON}
{$LONGSTRINGS ON}
{$OPENSTRINGS ON}
{$OPTIMIZATION ON}
{$OVERFLOWCHECKS OFF}
{$RANGECHECKS OFF}
{$REFERENCEINFO ON}
{$SAFEDIVIDE OFF}
{$STACKFRAMES OFF}
{$TYPEDADDRESS OFF}
{$VARSTRINGCHECKS ON}
{$WRITEABLECONST OFF}
{$MINENUMSIZE 1}
{$IMAGEBASE $400000}
{$DESCRIPTION 'DCPcrypt cryptographic component library v2 BETA 3'}
{$IMPLICITBUILD ON}
requires
rtl;
contains
DCPbase64 in 'DCPbase64.pas',
DCPblockciphers in 'DCPblockciphers.pas',
DCPconst in 'DCPconst.pas',
DCPcrypt2 in 'DCPcrypt2.pas',
DCPblowfish in 'Ciphers\DCPblowfish.pas',
DCPcast128 in 'Ciphers\DCPcast128.pas',
DCPcast256 in 'Ciphers\DCPcast256.pas',
DCPdes in 'Ciphers\DCPdes.pas',
DCPgost in 'Ciphers\DCPgost.pas',
DCPice in 'Ciphers\DCPice.pas',
DCPidea in 'Ciphers\DCPidea.pas',
DCPmars in 'Ciphers\DCPmars.pas',
DCPmisty1 in 'Ciphers\DCPmisty1.pas',
DCPrc2 in 'Ciphers\DCPrc2.pas',
DCPrc4 in 'Ciphers\DCPrc4.pas',
DCPrc5 in 'Ciphers\DCPrc5.pas',
DCPrc6 in 'Ciphers\DCPrc6.pas',
DCPrijndael in 'Ciphers\DCPrijndael.pas',
DCPtea in 'Ciphers\DCPtea.pas',
DCPtwofish in 'Ciphers\DCPtwofish.pas',
DCPhaval in 'Hashes\DCPhaval.pas',
DCPmd4 in 'Hashes\DCPmd4.pas',
DCPmd5 in 'Hashes\DCPmd5.pas',
DCPripemd128 in 'Hashes\DCPripemd128.pas',
DCPripemd160 in 'Hashes\DCPripemd160.pas',
DCPsha1 in 'Hashes\DCPsha1.pas',
DCPtiger in 'Hashes\DCPtiger.pas',
DCPreg in 'DCPreg.pas',
DCPserpent in 'Ciphers\DCPserpent.pas',
DCPsha256 in 'Hashes\DCPsha256.pas',
DCPsha512 in 'Hashes\DCPsha512.pas';
end.