πŸ±β€πŸ‘€ 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!
Share this project:

Updates