-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhide.py
96 lines (76 loc) · 2.07 KB
/
hide.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
from PIL import Image
import binascii
import hashlib
import optparse
def rgb2hex(r, g, b):
return '#{:02x}{:02x}{:02x}'.format(r, g, b)
def hex2rgb(hexcode):
return tuple(map(ord, hexcode[1:].decode('hex')))
def str2bin(message):
binary = bin(int(binascii.hexlify(message), 16))
return binary[2:]
def bin2str(binary):
message = binascii.unhexlify('%x' % (int('0b' + binary, 2)))
return message
def encode(hexcode, digit):
if hexcode[-1] in ('0', '1', '2', '3', '4', '5'):
hexcode = hexcode[:-1] + digit
return hexcode
else:
return None
def decode(hexcode):
if hexcode[-1] in ('0', '1'):
return hexcode[-1]
else:
return None
def hide(filename, message, password = None):
img = Image.open(filename)
pass_binary = None
binary = str2bin(message) + '1111111111111110'
if password:
pass_binary = str2bin(hashlib.sha224(password).hexdigest()) + '0000000000000001'
binary = pass_binary + binary
if img.mode in ('RGBA'):
img = img.convert('RGBA')
datas = img.getdata()
newData = []
digit = 0
temp = ''
for item in datas:
if(digit < len(binary)):
newpix = encode(rgb2hex(item[0], item[1], item[2]), binary[digit])
if newpix == None:
newData.append(item)
else:
r, g, b = hex2rgb(newpix)
newData.append((r,g,b,255))
digit += 1
else:
newData.append(item)
img.putdata(newData)
img.save('other' + filename, "PNG")
return "Completed"
return "Incorrect image mode, couldn't hide"
def retr(filename):
img = Image.open(filename)
if img.mode in ('RGBA'):
img = img.convert('RGBA')
datas = img.getdata()
binary = ''
for item in datas:
sBin = decode(rgb2hex(item[0], item[1], item[2]))
if sBin == None:
pass
else:
binary = binary + sBin
if binary[-16:] == '1111111111111110':
return bin2str(binary[:-16])
if binary[-16:] == '0000000000000001':
password = raw_input('Password: ')
if not hashlib.sha224(password).hexdigest() == bin2str(binary[:-16]):
return 'Incorrect passphrase'
else:
binary = ''
return 'No message found'
else:
return 'Incorrect file type'