This repository has been archived by the owner on Jan 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathAES.py
220 lines (176 loc) · 5.83 KB
/
AES.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
from aesUtils import xorMatrix, matToString, stringToMat, matToHexa, hexaToMat, _4x4print, b64d, b64e
import encryption as en
import decryption as de
import numpy as np
def encrypt(state = None, key = None, b64 = False, mode = "ECB", IV = None, hexain = False, hexakey = False, hexaIV = False, hexaout = False, cipher = None):
ret = ""
lenkey = 0
b64 = True if b64 == "True" else False
hexain = True if hexain == "True" else False
hexakey = True if hexakey == "True" else False
hexaIV = True if hexaIV == "True" else False
hexaout = True if hexaout == "True" else False
if (hexakey):
lenkey = len(key) / 2
else:
lenkey = len(key)
while(state == None):
print("Please insert your plaintext?")
state = input()
while(key == None or not (lenkey == 16 or lenkey == 32 or lenkey == 24)):
print("Please insert your cipher key? Your key must be of length 16, 24 or 32")
key = input()
if (hexakey):
lenkey = len(key) // 2
else:
lenkey = len(key)
if (b64 == True):
state = b64e(state)
func = {
16: en.AES128,
24: en.AES192,
32: en.AES256
}
matConversion = {
True: matToHexa,
False: matToString
}
strConversion = {
False: stringToMat,
True: hexaToMat
}
if (hexain):
res = [state[y - 32:y] for y in range(32, len(state) + 32, 32)]
lim = 32 - len(res[-1])
else:
res = [state[y - 16:y] for y in range(16, len(state) + 16, 16)]
lim = 16 - len(res[-1])
for i in range(0, lim):
res[-1] += chr(0x00)
key = strConversion[hexakey](key)
if (lenkey != 16):
cypherkey = np.transpose(key)
cypherkey = cypherkey.tolist()
else: cypherkey = key
if (mode == "CBC"):
temp = strConversion[hexaIV](IV)
for i in res:
sub = strConversion[hexain](i)
sub = xorMatrix(sub, temp)
sub = func[lenkey](sub, cypherkey)
temp = sub
sub = matConversion[hexaout](sub)
ret += sub
elif (mode == "CFB"):
temp = strConversion[hexaIV](IV)
for i in res:
sub = strConversion[hexain](i)
temp = func[lenkey](temp, cypherkey)
sub = xorMatrix(sub, temp)
temp = sub
sub = matConversion[hexaout](sub)
ret += sub
elif (mode == "OFB"):
temp = strConversion[hexaIV](IV)
for i in res:
sub = strConversion[hexain](i)
temp = func[lenkey](temp, cypherkey)
sub = xorMatrix(sub, temp)
sub = matConversion[hexaout](sub)
ret += sub
else:
for i in res:
sub = strConversion[hexain](i)
sub = func[lenkey](sub, cypherkey)
sub = matConversion[hexaout](sub)
ret += sub
return ret
def decrypt(state = None, key = None, b64 = False, mode = "ECB", IV = None, hexain = False, hexakey = False, hexaIV = False, hexaout = False, cipher = None):
ret = ""
lenkey = 0
b64 = True if b64 == "True" else False
hexain = True if hexain == "True" else False
hexakey = True if hexakey == "True" else False
hexaIV = True if hexaIV == "True" else False
hexaout = True if hexaout == "True" else False
if (hexakey):
lenkey = len(key) / 2
else:
lenkey = len(key)
while(state == None):
print("Please insert your plaintext?")
state = input()
while(key == None or not (lenkey == 16 or lenkey == 32 or lenkey == 24)):
print("Please insert your cipher key? Your key must be of length 16, 24 or 32")
key = input()
if (hexakey):
lenkey = len(key) / 2
else:
lenkey = len(key)
func = {
16: de.AES128,
24: de.AES192,
32: de.AES256
}
enfunc = {
16: en.AES128,
24: en.AES192,
32: en.AES256
}
matConversion = {
True: matToHexa,
False: matToString
}
strConversion = {
False: stringToMat,
True: hexaToMat
}
if (hexain):
res = [state[y - 32:y] for y in range(32, len(state) + 32, 32)]
lim = 32 - len(res[-1])
else:
res = [state[y - 16:y] for y in range(16, len(state) + 16, 16)]
lim = 16 - len(res[-1])
for i in range(0, lim):
res[-1] += chr(0x00)
key = strConversion[hexakey](key)
if (lenkey != 16):
cypherkey = np.transpose(key)
cypherkey = cypherkey.tolist()
else: cypherkey = key
if (mode == "CBC"):
temp = strConversion[hexaIV](IV)
for i in res:
sub = strConversion[hexain](i)
sub = func[lenkey](sub, cypherkey)
sub = xorMatrix(sub, temp)
sub = matConversion[hexaout](sub)
temp = strConversion[hexain](i)
ret += sub
elif (mode == "CFB"):
temp = strConversion[hexaIV](IV)
for i in res:
sub = strConversion[hexain](i)
temp = enfunc[lenkey](temp, cypherkey)
sub = xorMatrix(sub, temp)
temp = strConversion[hexain](i)
sub = matConversion[hexaout](sub)
ret += sub
elif (mode == "OFB"):
temp = strConversion[hexaIV](IV)
for i in res:
sub = strConversion[hexain](i)
temp = enfunc[lenkey](temp, cypherkey)
sub = xorMatrix(sub, temp)
sub = matConversion[hexaout](sub)
ret += sub
else:
for i in res:
sub = strConversion[hexain](i)
sub = func[lenkey](sub, cypherkey)
sub = matConversion[hexaout](sub)
ret += sub
ret = ret.rstrip(chr(0x00))
if (b64 == True):
ret = b64d(ret)
return ret