home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2002 December
/
Chip_2002-12_cd1.bin
/
ctenari
/
Hytha
/
MultiHSH.exe
/
SR.RAR
/
SR
/
DCPCrypt
/
DCPkylix.dpk
< prev
next >
Wrap
Text File
|
2002-07-16
|
2KB
|
67 lines
package DCPkylix;
{$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 components library v2 BETA 2'}
{$DESIGNONLY}
{$IMPLICITBUILD OFF}
requires
baseclx,
visualclx;
contains
DCPbase64 in 'DCPbase64.pas',
DCPblockciphers in 'DCPblockciphers.pas',
DCPconst in 'DCPconst.pas',
DCPcrypt2 in 'DCPcrypt2.pas',
DCPreg in 'DCPreg.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',
DCPserpent in 'Ciphers/DCPserpent.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',
DCPsha256 in 'Hashes/DCPsha256.pas',
DCPsha512 in 'Hashes/DCPsha512.pas',
DCPtiger in 'Hashes/DCPtiger.pas';
end.