hmacrypt/string_encryption_example.py
thecookingsenpai c0ec66f63b Version 1
2024-01-28 16:55:26 +01:00

9 lines
161 B
Python

import src.hmacrypt as hmacrypt
encrypted = hmacrypt.self_encrypt("My secret")
print(encrypted)
decrypted = hmacrypt.self_decrypt(encrypted)
print(decrypted)