Skip to content

Commit

Permalink
Add tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Legrandin committed Jun 16, 2024
1 parent 470d27c commit d984da4
Show file tree
Hide file tree
Showing 2 changed files with 398 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/Crypto/SelfTest/PublicKey/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@
test_ECC_Curve25519,
test_ECC_Ed448,
test_import_DSA, test_import_RSA,
test_import_ECC, test_ElGamal)
test_import_ECC, test_ElGamal,
test_import_Curve25519)


def get_tests(config={}):
Expand All @@ -46,6 +47,7 @@ def get_tests(config={}):
tests += test_import_DSA.get_tests(config=config)
tests += test_import_RSA.get_tests(config=config)
tests += test_import_ECC.get_tests(config=config)
tests += test_import_Curve25519.get_tests(config=config)

tests += test_ElGamal.get_tests(config=config)
return tests
Expand Down
Loading

0 comments on commit d984da4

Please sign in to comment.