Siddhesh-Agarwal / cryptmoji

A simple emoji-based encryption-decryption library.

Home Page:https://github.com/Siddhesh-Agarwal/cryptmoji/wiki/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

πŸ₯· Cryptmoji

A simple emoji-based encryption-decryption library.

Downloads


πŸ“₯ Installation

pip install the library:

pip install cryptmoji

Check the Documentation

πŸ“ Usage

from cryptmoji import encrypt, decrypt

text = "Hello, world!"
key = "random_key" # makes the encryption stronger (optional)

# The encrypt and decrypt functions return the value
decrypted = decrypt(encrypted, key=key)
print(decrypted)
# 'πŸŽ½πŸ‰πŸ­πŸ£πŸ΄πŸŽπŸ΅πŸ€πŸ§πŸ‰πŸ΄πŸˆπŸŽ†'

# The encrypt and decrypt functions change the value in-place too
decrypted = decrypt(encrypted, key=key)
print(decrypted)
# 'Hello, world!'

About

A simple emoji-based encryption-decryption library.

https://github.com/Siddhesh-Agarwal/cryptmoji/wiki/

License:MIT License


Languages

Language:Python 100.0%