-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdnkrypt.py
269 lines (221 loc) · 5.57 KB
/
dnkrypt.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
#!/usr/bin/python
# -*- coding: utf-8 -*-
#Author: Nick Mantas
import os, sys ,binascii ,time, re
import morse, caesar
print('''
8 o o o o o
8 8b 8 8 .P 8
.oPYo8 8`b 8 o8ob' oPYo. o o .oPYo. o8P
8 8 8 `b 8 8 `b 8 `' 8 8 8 8 8
8 8 8 `b8 8 8 8 8 8 8 8 8
`YooP' 8 `8 8 8 8 `YooP8 8YooP' 8
:.....:..:::..:..::....:::::....8 8 ....:::..:
:::::::::::::::::::::::::::::ooP'.8 ::::::::::
:::::::::::::::::::::::::::::...::..::::::::::
Version 1.0
Perform simple cryptanalysis tasks: ''' )
def Menu():
print ('''1) Find & Replace (fr)
2) Binary to Text/ Text to Binary (bt)
3) Morse Code (m)
4) Caesar Cipher (c)
Press E to Exit
''')
action = raw_input('Enter mode code: ')
print
while action !='fr' or action != 'b2t'or action != 't2b:' or action != 'E':
if action == 'fr':
d = FindNReplace()
print
d = Menu()
break
elif action == 'bt':
d = BinaryText()
print
d = Menu()
break
elif action == 'm':
d = Morsey()
print
d = Menu()
break
elif action == 'c':
d = Caesar()
print
d = Menu()
break
elif action == 'E':
print 'Exiting %s' %u'\u23f3'
break
else:
print '''%s Please insert correct option!
''' % u'\u26a0'
d = Menu()
break
def FindNReplace():
def multiple_replace(text, adict):
rx = re.compile('|'.join(map(re.escape, adict)))
def one_xlat(match):
return adict[match.group(0)]
return rx.sub(one_xlat, text)
aloc ={}
nal = int(raw_input('Enter number of transpositions: '))
text = raw_input('Enter the text : ').lower()
print
for i in range(nal):
what = raw_input('Find :')
wwith = raw_input('Replace with :')
print
aloc.setdefault(what,wwith)
new = multiple_replace(text,aloc)
print new
sv = raw_input('Do you want to save analysis? (Y/n) ')
while sv != 'Y' or sv != 'n':
if sv == 'Y':
Save(text,new)
break
elif sv == 'n':
break
else:
sv = raw_input('Please insert correct option: ')
def BinaryText():
print'''1)Binary to Text Conversion (b2t)
2)Text to Binary Conversion (t2b)
'''
mode = raw_input('Enter mode code: ')
while mode != 'b2t' or mode !='t2b':
if mode =='b2t':
i = 0
text = raw_input('Enter binary sequence : ')
new = ''
while i < len(text):
tmp = text[i:8+i]
tmp = chr(int(tmp,2))
new += tmp
i += 8
print new
sv = raw_input('Do you want to save analysis? (Y/n) ')
while sv != 'Y' or sv != 'n':
if sv == 'Y':
Save(text,new)
break
elif sv == 'n':
break
else:
sv = raw_input('Please insert correct option: ')
break
elif mode =='t2b':
text = raw_input('Enter the text : ').lower()
new = ''
for i in range(len(text)):
tmp = bin(ord(text[i]))[2:]
new += (8-len(tmp)) * '0' + tmp
print new
sv = raw_input('Do you want to save analysis? (Y/n) ')
while sv != 'Y' or sv != 'n':
if sv == 'Y':
Save(text,new)
break
elif sv == 'n':
break
else:
sv = raw_input('Please insert correct option: ')
break
else:
print '''%s Please insert correct option!
''' % u'\u26a0'
BinaryText()
break
def Morsey():
print'''1)Encode (en)
2)Decode (de)
'''
mode = raw_input('Enter mode code: ')
while mode != 'en' or mode != 'de':
if mode == 'en':
text = raw_input('Enter the message to encode: ')
new = morse.encode(text)
print new.lower()
sv = raw_input('Do you want to save analysis? (Y/n) ')
while sv != 'Y' or sv != 'n':
if sv == 'Y':
Save(text,new)
break
elif sv == 'n':
break
else:
sv = raw_input('Please insert correct option: ')
break
elif mode == 'de':
text = raw_input('Enter the message to decode: ')
new = morse.decode(text)
print new.lower()
sv = raw_input('Do you want to save analysis? (Y/n) ')
while sv != 'Y' or sv != 'n':
if sv == 'Y':
Save(text,new)
break
elif sv == 'n':
break
else:
sv = raw_input('Please insert correct option: ')
break
else:
print '''%s Please insert correct option!
''' % u'\u26a0'
Morsey()
break
def Caesar():
print'''1)Encrypt (en)
2)Decrypt (de)
'''
mode = raw_input('Enter mode code: ')
while mode != 'en' or mode != 'de':
if mode == 'en':
text = raw_input('Enter the message to encrypt: ')
key = int(raw_input('Enter the key to encrypt: '))
new = caesar.encrypt(text,key)
print new
sv = raw_input('Do you want to save analysis? (Y/n) ')
while sv != 'Y' or sv != 'n':
if sv == 'Y':
Save(text,new)
break
elif sv == 'n':
break
else:
sv = raw_input('Please insert correct option: ')
break
elif mode == 'de':
text = raw_input('Enter the ciphertext to decrypt: ')
key = int(raw_input('Enter the key to decrypt: '))
new = caesar.decrypt(text,key)
print new
sv = raw_input('Do you want to save analysis? (Y/n) ')
while sv != 'Y' or sv != 'n':
if sv == 'Y':
Save(text,new)
break
elif sv == 'n':
break
else:
sv = raw_input('Please insert correct option: ')
break
else:
print '''%s Please insert correct option!
''' % u'\u26a0'
Morsey()
break
def Save(text, analysed):
name = raw_input('Export to file: ')+'.txt'
text_file = open(name,'a')
text_file.write('''Input:
%s
''' % text)
text_file.write('''Result after analysis:
%s
''' % analysed)
text_file.close()
print 'Saved',u'\u2713'
init = Menu()