Text Encrypt 1.1 Through Version 1.4 - nevets04 - 10-11-2009
Sorry, I dont think that is a text encryptor, im not really sure what to call it....
But any ways, this is my second python script. It takes a word and scrambles the letters up, and mixes it with a bunch of other letters. The decryptor for this will be coming soon
Version 1.1
Code: choice = 0
loop = 1
y = "b l a g h s d g i x"
z = "l w j r g s d f g v"
while loop == 1:
choice = input("How many Letters is your word?(1-10): ")
if choice == 1:
x = raw_input("Type your word: ")
print y,x[0:1],z
elif choice == 2:
x = raw_input("Type your word: ")
print y,x[0:1],z,x[1:2],y
elif choice == 3:
x = raw_input("Type your word: ")
print y,x[0:1],z,x[1:2],y,x[2:3],z
elif choice == 4:
x = raw_input("Type your word: ")
print y,x[0:1],z,x[1:2],y,x[2:3],z,x[3:4],y
elif choice == 5:
x = raw_input("Type your word: ")
print y,x[0:1],z,x[1:2],y,x[2:3],z,x[3:4],y,x[4:5],z
elif choice == 6:
x = raw_input("Type your word: ")
print y,x[0:1],z,x[1:2],y,x[2:3],z,x[3:4],y,x[4:5],z,x[5:6],y
elif choice == 7:
x = raw_input("Type your word: ")
print y,x[0:1],z,x[1:2],y,x[2:3],z,x[3:4],y,x[4:5],z,x[5:6],y,x[6:7],z
elif choice == 8:
x = raw_input("Type your word: ")
print y,x[0:1],z,x[1:2],y,x[2:3],z,x[3:4],y,x[4:5],z,x[5:6],y,x[6:7],z,x[7:8],y
elif choice == 9:
x = raw_input("Type your word: ")
print y,x[0:1],z,x[1:2],y,x[2:3],z,x[3:4],y,x[4:5],z,x[5:6],y,x[6:7],z,x[7:8],y,x[8:9],z
elif choice == 10:
x = raw_input("Type your word: ")
print y,x[0:1],z,x[1:2],y,x[2:3],z,x[3:4],y,x[4:5],z,x[5:6],y,x[6:7],z,x[7:8],y,x[8:9],z,x[9:10],y
I edited the script. I made it so you dont have to count how many letters are in the word.
Version 1.2
Code: y = "b l a g h s d g i x"
z = "l w j r g s d f g v"
a = raw_input("Type your word: ")
x = len(a)
if x == 1:
print z,a[0:1],y
if x == 2:
print z,a[0:1],y,a[1:2],z
if x == 3:
print z,a[0:1],y,a[1:2],z,a[2:3],y
if x == 4:
print z,a[0:1],y,a[1:2],z,a[2:3],y,a[3:4],z
if x == 5:
print z,a[0:1],y,a[1:2],z,a[2:3],y,a[3:4],z,a[4:5],y
if x == 6:
print z,a[0:1],y,a[1:2],z,a[2:3],y,a[3:4],z,a[4:5],y,a[5:6],z
if x == 7:
print z,a[0:1],y,a[1:2],z,a[2:3],y,a[3:4],z,a[4:5],y,a[5:6],z,a[6:7],y
if x == 8:
print z,a[0:1],y,a[1:2],z,a[2:3],y,a[3:4],z,a[4:5],y,a[5:6],z,a[6:7],y,a[7:8],z
if x == 9:
print z,a[0:1],y,a[1:2],z,a[2:3],y,a[3:4],z,a[4:5],y,a[5:6],z,a[6:7],y,a[7:8],z,a[8:9],y
if x == 10:
print z,a[0:1],y,a[1:2],z,a[2:3],y,a[3:4],z,a[4:5],y,a[5:6],z,a[6:7],y,a[7:8],z,a[8:9],y,a[10:11],z
EDIT:
The encryptor and decryptor
Version 1.3
Code: choice = input("What would you like to do?: ")
if choice == 1:
y = "b l a g h s d g i x"
z = "l w j r g s d f g v"
a = raw_input("Type your word: ")
x = len(a)
if x == 1:
print z,a[0:1],y
if x == 2:
print z,a[0:1],y,a[1:2],z
if x == 3:
print z,a[0:1],y,a[1:2],z,a[2:3],y
if x == 4:
print z,a[0:1],y,a[1:2],z,a[2:3],y,a[3:4],z
if x == 5:
print z,a[0:1],y,a[1:2],z,a[2:3],y,a[3:4],z,a[4:5],y
if x == 6:
print z,a[0:1],y,a[1:2],z,a[2:3],y,a[3:4],z,a[4:5],y,a[5:6],z
if x == 7:
print z,a[0:1],y,a[1:2],z,a[2:3],y,a[3:4],z,a[4:5],y,a[5:6],z,a[6:7],y
if x == 8:
print z,a[0:1],y,a[1:2],z,a[2:3],y,a[3:4],z,a[4:5],y,a[5:6],z,a[6:7],y,a[7:8],z
if x == 9:
print z,a[0:1],y,a[1:2],z,a[2:3],y,a[3:4],z,a[4:5],y,a[5:6],z,a[6:7],y,a[7:8],z,a[8:9],y
if x == 10:
print z,a[0:1],y,a[1:2],z,a[2:3],y,a[3:4],z,a[4:5],y,a[5:6],z,a[6:7],y,a[7:8],z,a[8:9],y,a[9:10],z
print "-------------------------------------------------------------------"
print "-------------------------------------------------------------------"
if choice == 2:
x = raw_input("Paste in the message: ")
print x[20:21],x[42:43],x[64:65],x[86:87],x[108:109],x[130:131],x[152:153],x[174:175],x[196:197],x[218:219]
print "-------------------------------------------------------------------"
print "-------------------------------------------------------------------"
Another Edit:
This is not necessary, the previous version works as well, this just makes the program easier to use. I believe this one will only work on Linux or mac.
EDIT: This does work on windows
Version 1.4
Code: loop = 1
choice = 0
import os
while loop == 1:
os.system("clear")
print "1) Encrypt"
print "2) Decrypt"
choice = input("What would you like to do?: ")
if choice == 1:
y = "b l a g h s d g i x"
z = "l w j r g s d f g v"
a = raw_input("Type your word: ")
x = len(a)
if x == 1:
print z,a[0:1],y
if x == 2:
print z,a[0:1],y,a[1:2],z
if x == 3:
print z,a[0:1],y,a[1:2],z,a[2:3],y
if x == 4:
print z,a[0:1],y,a[1:2],z,a[2:3],y,a[3:4],z
if x == 5:
print z,a[0:1],y,a[1:2],z,a[2:3],y,a[3:4],z,a[4:5],y
if x == 6:
print z,a[0:1],y,a[1:2],z,a[2:3],y,a[3:4],z,a[4:5],y,a[5:6],z
if x == 7:
print z,a[0:1],y,a[1:2],z,a[2:3],y,a[3:4],z,a[4:5],y,a[5:6],z,a[6:7],y
if x == 8:
print z,a[0:1],y,a[1:2],z,a[2:3],y,a[3:4],z,a[4:5],y,a[5:6],z,a[6:7],y,a[7:8],z
if x == 9:
print z,a[0:1],y,a[1:2],z,a[2:3],y,a[3:4],z,a[4:5],y,a[5:6],z,a[6:7],y,a[7:8],z,a[8:9],y
if x == 10:
print z,a[0:1],y,a[1:2],z,a[2:3],y,a[3:4],z,a[4:5],y,a[5:6],z,a[6:7],y,a[7:8],z,a[8:9],y,a[9:10],z
raw_input("Press Enter To Continue")
if choice == 2:
x = raw_input("Paste in the message: ")
print x[20:21],x[42:43],x[64:65],x[86:87],x[108:109],x[130:131],x[152:153],x[174:175],x[196:197],x[218:219]
raw_input("Press Enter To Continue")
RE: Text Encrypter - Socrates - 10-12-2009
Pretty impressive I might make one.
RE: Text Encrypter - Pins222 - 10-12-2009
edit edit edit edit.
Either way, nice work
RE: Text Encrypter - Akshay* - 10-13-2009
This is a good work
|