-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdecrypter.py
48 lines (40 loc) · 1.05 KB
/
decrypter.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
# reverse algorithm of encrypter.py for decrypting the secret message from the image.
from PIL import Image
from numpy import array
import numpy as np
img = Image.open('encrypted.png') # path of the encrypted image (with extension)
rows, columns, channels = np.shape(img)
arr = array(img)
# function to check a number is even or not
def is_even(x):
if(x%2==0):
return 1
# decrypting binary message from the RGB values of each pixels
bmsg = []
bmsg_chunks = []
counter = 0
flag = 0
for i in range(rows):
for j in range(columns):
tmp = arr[i][j]
if(counter > 7):
if(any(bmsg_chunks)):
bmsg.append(bmsg_chunks)
bmsg_chunks = []
counter = 0
else:
flag = 1
break
if(flag == 0):
if(is_even(int(tmp[0]) +int(tmp[1]) +int(tmp[2]))):
bmsg_chunks.append(int(1))
else:
bmsg_chunks.append(int(0))
counter += 1
else:
break
# converting binary message in ASCII
for i in range(int(len(bmsg))):
bmsg[i] = chr(int("".join(map(str, bmsg[i])), 2))
msg = "".join(bmsg)
print('The encrypted message in the image : ' + msg)