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 >
Text File  |  2002-07-16  |  2KB  |  67 lines

  1. package DCPkylix;
  2.  
  3. {$R *.res}
  4. {$ALIGN 8}
  5. {$ASSERTIONS ON}
  6. {$BOOLEVAL OFF}
  7. {$DEBUGINFO ON}
  8. {$EXTENDEDSYNTAX ON}
  9. {$IMPORTEDDATA ON}
  10. {$IOCHECKS ON}
  11. {$LOCALSYMBOLS ON}
  12. {$LONGSTRINGS ON}
  13. {$OPENSTRINGS ON}
  14. {$OPTIMIZATION ON}
  15. {$OVERFLOWCHECKS OFF}
  16. {$RANGECHECKS OFF}
  17. {$REFERENCEINFO ON}
  18. {$SAFEDIVIDE OFF}
  19. {$STACKFRAMES OFF}
  20. {$TYPEDADDRESS OFF}
  21. {$VARSTRINGCHECKS ON}
  22. {$WRITEABLECONST OFF}
  23. {$MINENUMSIZE 1}
  24. {$IMAGEBASE $400000}
  25. {$DESCRIPTION 'DCPcrypt cryptographic components library v2 BETA 2'}
  26. {$DESIGNONLY}
  27. {$IMPLICITBUILD OFF}
  28.  
  29. requires
  30.   baseclx,
  31.   visualclx;
  32.  
  33. contains
  34.   DCPbase64 in 'DCPbase64.pas',
  35.   DCPblockciphers in 'DCPblockciphers.pas',
  36.   DCPconst in 'DCPconst.pas',
  37.   DCPcrypt2 in 'DCPcrypt2.pas',
  38.   DCPreg in 'DCPreg.pas',
  39.   DCPblowfish in 'Ciphers/DCPblowfish.pas',
  40.   DCPcast128 in 'Ciphers/DCPcast128.pas',
  41.   DCPcast256 in 'Ciphers/DCPcast256.pas',
  42.   DCPdes in 'Ciphers/DCPdes.pas',
  43.   DCPgost in 'Ciphers/DCPgost.pas',
  44.   DCPice in 'Ciphers/DCPice.pas',
  45.   DCPidea in 'Ciphers/DCPidea.pas',
  46.   DCPmars in 'Ciphers/DCPmars.pas',
  47.   DCPmisty1 in 'Ciphers/DCPmisty1.pas',
  48.   DCPrc2 in 'Ciphers/DCPrc2.pas',
  49.   DCPrc4 in 'Ciphers/DCPrc4.pas',
  50.   DCPrc5 in 'Ciphers/DCPrc5.pas',
  51.   DCPrc6 in 'Ciphers/DCPrc6.pas',
  52.   DCPrijndael in 'Ciphers/DCPrijndael.pas',
  53.   DCPserpent in 'Ciphers/DCPserpent.pas',
  54.   DCPtea in 'Ciphers/DCPtea.pas',
  55.   DCPtwofish in 'Ciphers/DCPtwofish.pas',
  56.   DCPhaval in 'Hashes/DCPhaval.pas',
  57.   DCPmd4 in 'Hashes/DCPmd4.pas',
  58.   DCPmd5 in 'Hashes/DCPmd5.pas',
  59.   DCPripemd128 in 'Hashes/DCPripemd128.pas',
  60.   DCPripemd160 in 'Hashes/DCPripemd160.pas',
  61.   DCPsha1 in 'Hashes/DCPsha1.pas',
  62.   DCPsha256 in 'Hashes/DCPsha256.pas',
  63.   DCPsha512 in 'Hashes/DCPsha512.pas',
  64.   DCPtiger in 'Hashes/DCPtiger.pas';
  65.  
  66. end.
  67.