| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- program CryptoLibConsole;
- {$mode objfpc}{$H+}
- uses
- consoletestrunner,
- Asn1SequenceParserTests,
- DerApplicationSpecificTests,
- EqualsAndHashCodeTests,
- OIDTests,
- BigIntegerTests,
- ECAlgorithmsTests,
- ECPointTests,
- SecP256R1FieldTests,
- SecP384R1FieldTests,
- ECDsa5Tests,
- ECTests,
- NamedCurveTests,
- ECSchnorrTests,
- SignerUtilitiesTests,
- SecureRandomTests,
- DigestRandomNumberTests,
- FixedPointTests,
- AESTests,
- BlockCipherVectorTests,
- BlockCipherMonteCarloTests,
- AESTestVectors,
- AESSICTests,
- IESCipherTests,
- MD5HMacTests,
- SHA1HMacTests,
- SHA224HMacTests,
- SHA256HMacTests,
- SHA384HMacTests,
- SHA512HMacTests,
- RIPEMD128HMacTests,
- RIPEMD160HMacTests,
- HMacTests,
- Pkcs5Tests,
- HkdfGeneratorTests,
- ECIESTests,
- ECNRTests,
- PaddingTests,
- DSATests,
- DeterministicDsaTests,
- 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.
|