What is the best PHP image steganography class? #image steganography
Edit
by Onuh Oguche Victor - 8 years ago (2016-06-16)
Hide user names and passwords inside images with steganography
| I want to get usernames and passwords from an authentication page. Then hide it in an image using lsb technique and generate the image to be stored in a folder on the server. |
Ask clarification
1 Recommendation
PHP Steganography Kit: Library of algorithms to encode messages in images
This package is a library of algorithms to encode messages in images.
It can take a given message and hides it inside a given image file so it is not perceptible.
The package implements several algorithms to hide and recover the text in the images using the least significant bit: pure steganography and secret key steganography.
The package can hide text or binary data in images in the PNG, JPEG and GIF formats with custom channels set.
The channels order can be used as a secret key for pure steganography. The secret steganography can also randomly choose the pixels or the channels it uses to make the algorithm more secure.
| by Manuel Lemos 26695 - 8 years ago (2016-06-21) Comment
Here you have a package that provides extensive options to generate images with hidden data using steganography. |