| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- program CryptoLib.Tests;
- {$mode objfpc}{$H+}
- uses
- Interfaces,
- Forms,
- GuiTestRunner,
- Asn1SequenceParserTests,
- DerApplicationSpecificTests,
- EqualsAndHashCodeTests,
- OIDTests,
- BigIntegerTests,
- ECAlgorithmsTests,
- ECPointTests,
- SecP384R1FieldTests,
- ECDsa5Tests,
- ECTests,
- NamedCurveTests,
- ECSchnorrTests,
- SignerUtilitiesTests,
- SecureRandomTests,
- DigestRandomNumberTests,
- FixedPointTests,
- AESTests,
- BlockCipherVectorTests,
- AESTestVectors,
- IESCipherTests,
- AESSICTests,
- MD5HMacTests,
- HMacTests,
- Pkcs5Tests,
- ClpFixedSecureRandom,
- ClpIFixedSecureRandom;
- {$R *.res}
- begin
- Application.Initialize;
- Application.CreateForm(TGuiTestRunner, TestRunner);
- Application.Run;
- end.
|