π±βπ€ Cryptmoji
A simple emoji-based encryption-decryption library.
π₯ Installation
pip install the library:
pip install cryptmoji
π Usage
from cryptmoji import Cryptmoji
text = "Hello World!"
key = "random_key" # makes the encryption stronger (optional)
a = Cryptmoji(text, key=key)
# The encrypt and decrypt functions return the value
encrypted = a.encrypt()
print(encrypted)
# ποΈπ¨πΌπ²ππ―ππΌπΉππΈπ€
# The encrypt and decrypt functions change the value in-place too
a.decrypt()
print(decrypted)
# Hello World!
Log in or sign up for Devpost to join the conversation.