-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsteganography.py
173 lines (127 loc) · 5.35 KB
/
steganography.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
import cv2
import argparse
from enum import Enum
class SteganographyAction(Enum):
ENCODE = "encode"
DECODE = "decode"
def __str__(self):
return self.value
parser = argparse.ArgumentParser(description="Implementação de esteganorafia com LSB")
parser.add_argument(
"action",
type=SteganographyAction,
choices=list(SteganographyAction),
help="Define se o programa de esconder uma informação, ou tentar ler uma informação escondida.")
parser.add_argument(
"file",
help="O arquivo a ser utilizado no processo")
parser.add_argument(
"--message",
help="A mensagem a ser escondida."
)
parser.add_argument(
"--out-file",
help="O arquivo a ser salvo após esconder a informação. Se a opção não estiver presente, considera-se o nome do arquivo fornecido, prefixado de 'steg-', para salvar o resultado."
)
class SteganographyException(Exception):
pass
class Steganography:
PixelXPosition = 0
PixelYPosition = 1
def __init__(self, image):
self.image = image
self.image_width = image.shape[0]
self.image_height = image.shape[1]
self.qnty_image_channels = image.shape[2]
self.current_pixel = (0, 0)
self.current_channel = 0
self.message_to_encode = None
self.out_file = None
# Considera-se unidade como um espaço disponível para salvar informaçao
def next_unit(self):
# Se for possível, pula pro próximo canal de cor do pixel atual
# Se não, pula pro próximo pixel
if self.current_channel < self.qnty_image_channels - 1:
self.current_channel += 1
else:
self.current_channel = 0
# Se estiver na última coluna de pixels, pula pra próxima linha
has_to_jump_to_new_row = self.current_pixel[Steganography.PixelXPosition] == self.image_width - 1
if has_to_jump_to_new_row:
self.current_pixel = (0, self.current_pixel[Steganography.PixelYPosition] + 1)
else:
self.current_pixel = (self.current_pixel[Steganography.PixelXPosition] + 1, self.current_pixel[Steganography.PixelYPosition])
def get_current_unit_value(self):
return self.image[self.current_pixel][self.current_channel]
def set_current_unit_value(self, new_value):
self.image[self.current_pixel][self.current_channel] = new_value
def read_bit(self):
bit = bin(self.get_current_unit_value())[-1]
self.next_unit()
return bit
def read_byte(self):
byte = ""
for i in range(8): byte += self.read_bit()
return byte
def write_bit(self, bit):
if not isinstance(bit, int):
bit = int(bit)
current_channel_value = self.get_current_unit_value()
if bit == 0:
# o LSB de ~1 é 0 (~1 = 0b1110)
# n AND 0 sempre retorna 0
new_channel_value = current_channel_value & ~1
else:
# n OR 1 sempre retorna 1
new_channel_value = current_channel_value | 1
self.set_current_unit_value(new_channel_value)
self.next_unit()
def write_byte(self, byte: str):
if byte[:2] == "0b":
byte = byte[2:]
byte = byte.zfill(8)
for bit in byte: self.write_bit(bit)
# Verifica se a quantidade de pixels da imagem
# é suficiente para esconder toda a informação
def check_image_size(self, length):
qnty_available_slots = self.image_width * self.image_height * self.qnty_image_channels
return length <= qnty_available_slots
def encode_image(self):
if not self.check_image_size(len(self.message_to_encode)):
raise SteganographyException("The value to be encoded is larger than allowed (the quantity of pixels of the image is not sufficient to allocate the message).")
# Adiciona a quantidade de caracteres da mensagem
# a ser encodada no começo da imagem.
# Serve para delimitar quantos pixels ler
# quando "decodar" a imagem
self.write_byte(bin(len(self.message_to_encode)))
for byte in self.message_to_encode.encode():
byte_as_string = bin(byte)
self.write_byte(byte_as_string)
def decode_image(self):
decoded_message = ""
# A quantidade de caracteres pra ler
# fica salva no começo da imagem
qnty_chars_to_read = int(self.read_byte(), 2)
for i in range(qnty_chars_to_read):
decoded_message += chr(int(self.read_byte(), 2))
return decoded_message
def save_image(self):
cv2.imwrite(
filename=self.out_file,
img=self.image
)
if __name__ == "__main__":
args = vars(parser.parse_args())
if args["action"] == SteganographyAction.ENCODE and args["message"] is None:
parser.error("Para esconder uma informação, é necessário prover uma mensagem com a flag --message")
image = cv2.imread(filename=args["file"])
steg = Steganography(image)
if args["out_file"]: steg.out_file = args["out_file"]
else: steg.out_file = "steg-" + args["file"]
if args["action"] == SteganographyAction.ENCODE:
steg.message_to_encode = args["message"]
steg.encode_image()
steg.save_image()
else:
decoded_message = steg.decode_image()
print(decoded_message)