| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- program CryptoLibConsole;
- {$mode objfpc}{$H+}
- uses
- consoletestrunner,
- Asn1SequenceParserTests,
- DerApplicationSpecificTests,
- EqualsAndHashCodeTests,
- OIDTests,
- BigIntegerTests,
- ECAlgorithmsTests,
- ECPointTests,
- SecP384R1FieldTests,
- ECDsa5Tests,
- ECTests,
- NamedCurveTests,
- ECSchnorrTests,
- SignerUtilitiesTests,
- SecureRandomTests,
- DigestRandomNumberTests,
- FixedPointTests,
- AESTests,
- BlockCipherVectorTests,
- AESTestVectors,
- IESCipherTests,
- AESSICTests,
- ClpFixedSecureRandom,
- ClpIFixedSecureRandom;
- type
- { TCryptoLibConsoleTestRunner }
- TCryptoLibConsoleTestRunner = class(TTestRunner)
- protected
- // override the protected methods of TTestRunner to customize its behaviour
- end;
- var
- Application: TCryptoLibConsoleTestRunner;
- begin
- Application := TCryptoLibConsoleTestRunner.Create(nil);
- Application.Initialize;
- Application.Run;
- Application.Free;
- end.
|