mirror of
https://github.com/cedricbonhomme/Stegano.git
synced 2025-06-29 03:36:13 +02:00
Reorganization of all modules.
This commit is contained in:
parent
e0bed8ba52
commit
872a5546fc
23 changed files with 77 additions and 43 deletions
|
@ -1 +1,9 @@
|
|||
|
||||
#!/usr/bin/env python
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
from . import red
|
||||
from . import exifHeader
|
||||
from . import lsb
|
||||
from . import lsbset
|
||||
|
||||
from . import steganalysis
|
||||
|
|
4
stegano/exifHeader/__init__.py
Normal file
4
stegano/exifHeader/__init__.py
Normal file
|
@ -0,0 +1,4 @@
|
|||
#!/usr/bin/env python
|
||||
#-*- coding: utf-8 -*-
|
||||
|
||||
from .exifHeader import *
|
4
stegano/lsb/__init__.py
Normal file
4
stegano/lsb/__init__.py
Normal file
|
@ -0,0 +1,4 @@
|
|||
#!/usr/bin/env python
|
||||
#-*- coding: utf-8 -*-
|
||||
|
||||
from .lsb import *
|
|
@ -28,7 +28,7 @@ import sys
|
|||
|
||||
from PIL import Image
|
||||
|
||||
from . import tools
|
||||
from stegano import tools
|
||||
|
||||
try:
|
||||
input = raw_input
|
4
stegano/lsbset/__init__.py
Normal file
4
stegano/lsbset/__init__.py
Normal file
|
@ -0,0 +1,4 @@
|
|||
#!/usr/bin/env python
|
||||
#-*- coding: utf-8 -*-
|
||||
|
||||
from .lsbset import *
|
|
@ -28,7 +28,7 @@ import sys
|
|||
|
||||
from PIL import Image
|
||||
|
||||
from . import tools
|
||||
from stegano import tools
|
||||
from . import generators
|
||||
|
||||
try:
|
4
stegano/red/__init__.py
Normal file
4
stegano/red/__init__.py
Normal file
|
@ -0,0 +1,4 @@
|
|||
#!/usr/bin/env python
|
||||
#-*- coding: utf-8 -*-
|
||||
|
||||
from .red import *
|
5
stegano/steganalysis/__init__.py
Normal file
5
stegano/steganalysis/__init__.py
Normal file
|
@ -0,0 +1,5 @@
|
|||
#!/usr/bin/env python
|
||||
#-*- coding: utf-8 -*-
|
||||
|
||||
from .steganalysisParity import *
|
||||
from .steganalysisStatistics import *
|
Loading…
Add table
Add a link
Reference in a new issue