-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsteganography.py
27 lines (25 loc) · 1.08 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
# INTERFACE BETWEEN GUI AND THE STEGANOGRAPHY MODULES
import imgSteganography as img
import gifsteg as gif
import docSteganography as doc
import avSteganography as av
def encode(text, bits, fileName): # encode(text, bit, fileName) -> fileName
if fileName.endswith(('.mp3', '.mp4', '.wav')):
return av.encode_av(fileName, text, bits)
if fileName.endswith(('.png', '.bmp')):
return img.encode_image(fileName, text, bits)
if fileName.endswith(('.gif')):
return gif.encode_image(fileName, text, bits)
if fileName.endswith(('.txt','.docx','.xlsx')):
return doc.encode_doc(fileName, text, bits)
return fileName
def decode(bits, fileName): # decode(bit, fileName) -> text
if fileName.endswith(('.mp3', '.mp4', '.wav')):
return av.decode_av(fileName, bits)
if fileName.endswith(('.png', '.bmp')):
return img.decode_image(fileName, bits)
if fileName.endswith(('.gif')):
return gif.decode_image(fileName, bits)
if fileName.endswith(('.txt','.docx','.xlsx')):
return doc.decode_doc(fileName, bits)
return fileName