CSYClubIIITK / eco-crypt

Cipher which encrypts the given text into Environment emojis.
MIT License
3 stars 15 forks source link

Add functionality to encode numbers #16

Open sarthakg043 opened 12 months ago

sarthakg043 commented 12 months ago

Right now the given emoji set is being used to encode letters from A-Z which can be found in index.py file

nature_emojis = [
    '🌿', '🌻', '🍃', '🌸', '🍂', '🌺',
    '🍀', '🍁', '🍄', '🌹', '🌲', '🌴',
    '🍅', '🍆', '🌽', '🍊', '🍎', '🍓',
    '🍑', '🍍', '🍌', '🍉', '🍇', '🍈',
    '🍐', '🍏'
]

TASK

Hint

You need to modify this encrypt and decrypt functions in index.py

HarikaB11 commented 11 months ago

Hi @sarthakg043 , I would like to work on this issue.