-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCA_encrypt.py
283 lines (206 loc) · 9.67 KB
/
CA_encrypt.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
270
271
272
273
274
275
276
277
278
279
280
281
282
from CAencrypt.util import *
from CAencrypt.rand import *
from CAencrypt.enc import *
import argparse
from argparse import RawTextHelpFormatter
from os.path import exists
import time
prog_description = """
An implementation of the Cellular Automata encryption algorithm in python3.
Based on work by Wuensche and Lesser [1,2].
"""
prog_epilog="""
References:
[1] Wuensche A. Encryption using cellular automata chain-rules. In: Automata. Luniver Press; 2008. p. 126--138.
[2] Wuensche A, Lesser M. The Global Dynamics of Cellular Automata. 1st ed. Reading, Massachusetts, USA: Addison Wesley Publishing Company; 1992.
"""
# Add all the possible input flags
# Add the input arguments
parser = argparse.ArgumentParser(prog="CA Encrypt/Decrypt",\
description=prog_description,\
epilog=prog_epilog,\
formatter_class=RawTextHelpFormatter)
# General arguments
parser.add_argument("-f","--keyFile-name",default="key.shared",type=str,\
help="The filename of the shared key, default 'key.shared'.")
# Arguments for shared key generation
parser.add_argument("-G","--Gen",action="store_true",\
help="Generate a shared keyfile.")
parser.add_argument("-k","--K",default=7,type=int,\
help="The neighbourhood size (must be odd), default 7.")
parser.add_argument("-T","--T",default=5,type=int,\
help="The number of CA steps to take for encryption/decryption (default 5).")
parser.add_argument("-N","--N",default=-1,type=int,\
help="The seed to use for the noise parameter, -ve for random.")
# General arguments
parser.add_argument("-V","--verbose",action="store_true",\
help="Use a verbose output.")
# Arguments for the input type
parser.add_argument("-B","--BW",default="img.png",type=str,\
help="Use an input image from the given input file, default 'img.png'.")
# Output file(s)
parser.add_argument("-O","--output-file",default="DEFAULT",type=str,\
help="output filename, default either encrypted.png or decrypted.png.")
parser.add_argument("-S","--verbose-save",action="store_true",\
help="Save after every encryption/decryption step.")
# Options to encrypt or decrypt
parser.add_argument("-E","--Enc",action="store_true",\
help="Encrypt the given input file.")
parser.add_argument("-D","--Dec",action="store_true",\
help="Decrypt the given input file.")
args = parser.parse_args()
if __name__ == "__main__":
# Quic error checks
if args.Gen and args.Enc:
EXIT("Cannot have -G and -E flags set")
elif args.Gen and args.Dec:
EXIT("Cannot have -G and -D flags set")
elif args.Enc and args.Dec:
EXIT("Cannot have -E and -D flags set")
if (args.Gen):
# Generate a shared keyfile and save to the relevant output file
# Initialise the class for key generation
C = CA(k=args.K,numSteps=args.T)
# Set or generate the noise seed
if args.N>0:
C.setNoiseSeed(args.N)
elif args.N<0:
C.setRandNoiseSeed()
else:
EXIT("Noise seed cannot be 0")
# Generate a valid ruleset
C.genRulesLeftReversible()
# And save the output
C.saveKey(args.keyFile_name)
elif (args.Enc):
# Encrypt a given input file
# Start by initialising a CA
C = CA()
# Read the input file
C.readKey(args.keyFile_name)
# Set or generate the noise seed
if args.N>0:
C.setNoiseSeed(args.N)
elif args.N<0:
C.setRandNoiseSeed()
else:
EXIT("Noise seed cannot be 0")
if args.BW:
if args.verbose:
print("Attempting to encrypt the greyscale image "+args.BW)
# Encrypt a black and white image
if not exists(args.BW):
EXIT("Input black and white image '"+args.BW+"' does not exist.")
# Read the input image and its dimensions and set the array in the CA class
I, d = readBWImage2BinArr(args.BW)
C.setBinEndVec(I.flatten())
if args.verbose:
print("Loaded image "+args.BW)
# XOR final encrypted image with noise
C.XORendArr()
if args.verbose:
print("XORed input array with random noise generated with seed "+str(C.noiseSeed))
print("Attempting "+str(C.numSteps)+" encryption steps with k="+str(C.k))
if args.verbose_save:
print("Also saving output image after each encryption step")
# Perform the encryption steps
if args.verbose_save:
# Save after every encryption step
C.CAts = C.end # Needed as single step only works with the work array C.CAts
for i in range(C.numSteps):
if args.verbose:
t = time.time()
C.singleCAstepReverseL()
saveBinArr2BWImage("enc"+str(i+1)+".png",C.CAts,d)
if args.verbose:
print(" + encryption step : "+str(i+1),\
" took : "+str('%.3f'%(time.time()-t))+" seconds")
# Needed as single step only works with the work array C.CAts
C.start = C.CAts
else:
# Do not save after every encryption step
if args.verbose:
C.CAstepsReverse(numSteps=C.numSteps,verbose=True)
else:
C.CAstepsReverse(numSteps=C.numSteps,verbose=False)
if args.verbose:
print("Encryption successful, saving output as encrypted.png")
# Then save the output image
if args.output_file == "DEFAULT":
outfile = "encrypted.png"
else:
outfile = args.output_file
saveBinArr2BWImage(outfile,C.start,d)
# And print info about the output image/encryption
if args.verbose:
print("Save of encrypted image to '"+outfile+"' successful")
print("Image/encryption properties:")
print(" = random noise seed "+str(C.noiseSeed))
else:
EXIT("No valid encryption flag/file given")
elif args.Dec:
# Decrypt a given input file
# Start by initialising a CA
C = CA()
# Read the input file
C.readKey(args.keyFile_name)
# Set or generate the noise seed
if args.N>0:
C.setNoiseSeed(args.N)
elif args.N<0:
EXIT("Noise seed must be set for decryption")
else:
EXIT("Noise seed cannot be 0")
if args.BW:
if args.verbose:
print("Attempting to decrypt the greyscale image "+args.BW)
if args.verbose_save:
print("Also saving output image after each encryption step")
print("Note: final decoding step is saved before XORing")
# Encrypt a black and white image
if not exists(args.BW):
EXIT("Input black and white image '"+args.BW+"' does not exist.")
# Read the input image and its dimensions and set the array in the CA class
I, d = readBWImage2BinArr(args.BW)
C.setBinStartVec(I.flatten())
if args.verbose:
print("Loaded image "+args.BW)
if args.verbose:
print("Attempting "+str(C.numSteps)+" decryption steps with k="+str(C.k))
# Perform the encryption steps
if args.verbose_save:
# Save after every encryption step
C.CAts = C.start # Needed as single step only works with the work array C.CAts
for i in range(C.numSteps):
if args.verbose:
t = time.time()
C.singleCAstep()
saveBinArr2BWImage("dec"+str(i+1)+".png",C.CAts,d)
if args.verbose:
print(" + decryption step : "+str(i+1),\
" took : "+str('%.3f'%(time.time()-t))+" seconds")
C.end = C.CAts # Needed as single step only works with the work array C.CAts
else:
if args.verbose:
C.CAsteps(numSteps=C.numSteps,verbose=True)
else:
C.CAsteps(numSteps=C.numSteps,verbose=False)
# Then XOR the final step with the random noise
C.XORendArr()
if args.verbose:
print("XORed final step with random noise generated with seed "+str(C.noiseSeed))
print("Decryption successful, saving output as decrypted.png")
# Then save the output image
if args.output_file == "DEFAULT":
outfile = "decrypted.png"
else:
outfile = args.output_file
saveBinArr2BWImage(outfile,C.end,d)
# And print info about the output image/encryption
if args.verbose:
print("Save of decrypted image to '"+outfile+"' successful")
else:
EXIT("No valid encryption flag/file given")
else:
print("A flag wasnt given that leads to any action, use one of:")
print(" -G :: Generate a shared key file")