mirror of
https://github.com/tcsenpai/hmacrypt.git
synced 2025-06-04 10:00:05 +00:00
9 lines
161 B
Python
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)
|