Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Text Encrypt 1.5
#1
Credits:
This was made with the by Fallen and I. Fallen made my old code smaller, and taught me how to allow users to put in any amount of letters.

Release notes:
1.1 Allows up to 10 letters to be encrypted
1.2 No longer have to count how many letters are in the word
1.3 The Decrypter is released
1.4 Makes the program more organised
1.5 More secure and allows you to put as many letters as you want

Text encrypt 1.5
Code:
import re
while True:
    print "\n" * 80
    print "1) Encrypt"
    print "2) Decrypt"
    choice = input("What would you like to do?: ")
    if choice == 1:
        a = "znakqlxzamc"
        b = "hznalkprasdnlaskf"
    c = "qpavmdlpcianasl"
    d = "fglaspgnasfalmfnkdcoz"
    e = "ujasbofdbbspqowlamzleasn"
    f = "anslfklvlcaoalsmndnzoqlaziql"
        Word = list(raw_input("Type your word: "))
        print "".join(["".join([a,b,c,Char,d,e,f]) for Char in Word])
        raw_input("Press Enter To Continue")
    if choice == 2:
        print re.sub("(znakqlxzamc|hznalkprasdnlaskf|qpavmdlpcianasl|fglaspgnasfalmfnkdcoz|ujasbofdbbspqowlamzleasn|anslfklvlcaoalsmndnzoqlaziql)", "", raw_input("Paste in the message: "))
        raw_input("Press Enter To Continue")
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Text Encrypt 1.1 Through Version 1.4 nevets04 3 853 10-13-2009, 01:49 AM
Last Post: Akshay*

Forum Jump:


Users browsing this thread: 1 Guest(s)