You are viewing a single comment's thread. Return to all comments →
Reckon some hacker will crack this cipher quite easily!...
messagetext = input() ciphertext = '' for m in messagetext: ciphertext += str(int(m) + 1) if int(m) < 9 else '0' print(ciphertext)
Seems like cookies are disabled on this browser, please enable them to open this website
Security - Message Space and Ciphertext Space
You are viewing a single comment's thread. Return to all comments →
Reckon some hacker will crack this cipher quite easily!...