Reorganization of all modules.

This commit is contained in:
Cédric Bonhomme 2016-05-19 21:32:15 +02:00
parent e0bed8ba52
commit 872a5546fc
No known key found for this signature in database
GPG key ID: A1CB94DE57B7A70D
23 changed files with 77 additions and 43 deletions

View file

@ -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

View file

@ -0,0 +1,4 @@
#!/usr/bin/env python
#-*- coding: utf-8 -*-
from .exifHeader import *

4
stegano/lsb/__init__.py Normal file
View file

@ -0,0 +1,4 @@
#!/usr/bin/env python
#-*- coding: utf-8 -*-
from .lsb import *

View file

@ -28,7 +28,7 @@ import sys
from PIL import Image
from . import tools
from stegano import tools
try:
input = raw_input

View file

@ -0,0 +1,4 @@
#!/usr/bin/env python
#-*- coding: utf-8 -*-
from .lsbset import *

View file

@ -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
View file

@ -0,0 +1,4 @@
#!/usr/bin/env python
#-*- coding: utf-8 -*-
from .red import *

View file

@ -0,0 +1,5 @@
#!/usr/bin/env python
#-*- coding: utf-8 -*-
from .steganalysisParity import *
from .steganalysisStatistics import *