1
0
mirror of https://git.code.sf.net/p/lazarus-ccr/dcpcrypt synced 2024-11-18 16:31:48 +02:00
lazarus-dcpcrypt/dcp.pas
Graeme Geldenhuys 63da555da4 Initial commit.
* This is is the standard v2 beta3 from Lazarus CCR
  which in turn is a FPC + Lazarus port from
  http://www.cityinthesky.co.uk/cryptography.html

* Only change I made, was to split the 'dcpcrypt' package
  into two. One is a GUI independant package. And the other
  is the Lazarus IDE (design time) package. Only the latter
  requires Lazarus. So the runtime only package can be used
  with non-LCL applications too, like fpGUI.
2009-11-13 16:49:44 +02:00

19 lines
506 B
ObjectPascal

{ This file was automatically created by Lazarus. do not edit!
This source is only used to compile and install the package.
}
unit dcp;
interface
uses
DCPbase64, DCPblockciphers, DCPconst, DCPcrypt2, DCPblowfish, DCPcast128,
DCPcast256, DCPdes, DCPgost, DCPice, DCPidea, DCPmars, DCPmisty1, DCPrc2,
DCPrc4, DCPrc5, DCPrc6, DCPrijndael, DCPserpent, DCPtea, DCPtwofish,
DCPhaval, DCPmd4, DCPmd5, DCPripemd128, DCPripemd160, DCPsha1, DCPsha256,
DCPsha512, DCPtiger;
implementation
end.