├── .gitignore ├── LICENSE ├── README.md ├── requirements.txt ├── res ├── image1.jpg └── image2.jpg └── steganography.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvins/steganography/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvins/steganography/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvins/steganography/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Pillow==10.3.0 2 | click==8.0.1 3 | -------------------------------------------------------------------------------- /res/image1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvins/steganography/HEAD/res/image1.jpg -------------------------------------------------------------------------------- /res/image2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvins/steganography/HEAD/res/image2.jpg -------------------------------------------------------------------------------- /steganography.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelvins/steganography/HEAD/steganography.py --------------------------------------------------------------------------------