CryptoLib.lpr 726 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. FixedPointTests,
  23. AESTests,
  24. BlockCipherVectorTests,
  25. AESTestVectors,
  26. IESCipherTests,
  27. AESSICTests,
  28. MD5HMacTests,
  29. HMacTests,
  30. Pkcs5Tests,
  31. ClpFixedSecureRandom,
  32. ClpIFixedSecureRandom;
  33. {$R *.res}
  34. begin
  35. Application.Initialize;
  36. Application.CreateForm(TGuiTestRunner, TestRunner);
  37. Application.Run;
  38. end.