CryptoLib.lpr 530 B

1234567891011121314151617181920212223242526272829303132
  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. SignerUtilitiesTests,
  19. SecureRandomTests,
  20. ClpFixedSecureRandom,
  21. ClpIFixedSecureRandom;
  22. {$R *.res}
  23. begin
  24. Application.Initialize;
  25. Application.CreateForm(TGuiTestRunner, TestRunner);
  26. Application.Run;
  27. end.