CryptoLib.lpr 575 B

12345678910111213141516171819202122232425262728293031323334
  1. program CryptoLib.Tests;
  2. {$mode objfpc}{$H+}
  3. uses
  4. Interfaces,
  5. Forms,
  6. GuiTestRunner,
  7. Asn1SequenceParserTests,
  8. DerApplicationSpecificTests,
  9. EqualsAndHashCodeTests,
  10. OIDTests,
  11. BigIntegerTests,
  12. ECAlgorithmsTests,
  13. ECPointTests,
  14. SecP384R1FieldTests,
  15. ECDsa5Tests,
  16. ECTests,
  17. NamedCurveTests,
  18. ECSchnorrTests,
  19. SignerUtilitiesTests,
  20. SecureRandomTests,
  21. DigestRandomNumberTests,
  22. ClpFixedSecureRandom,
  23. ClpIFixedSecureRandom;
  24. {$R *.res}
  25. begin
  26. Application.Initialize;
  27. Application.CreateForm(TGuiTestRunner, TestRunner);
  28. Application.Run;
  29. end.