This commit is contained in:
2025-03-23 16:06:10 +01:00
parent bbf2d0b280
commit de46a47acc
10 changed files with 208 additions and 465 deletions

View File

@ -35,8 +35,8 @@ class TestBasicCrypto(unittest.TestCase):
def test_key_loading(self) -> None:
"""Test basic flow."""
public_key = load_public_key(self.public_key)
private_key = load_private_key(self.private_key)
load_public_key(self.public_key)
load_private_key(self.private_key)
self.assertEqual(True, True)
def test_encrypt_decrypt(self) -> None: