Metadata-Version: 2.2
Name: verysteno
Version: 1.0.0
Summary: A library for encoding and decoding messages in sound and images using steganography.
Home-page: https://github.com/XenonPy/steno
Author: XenonPy
Author-email: xenonpy@wearehackerone.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Requires-Dist: numpy
Requires-Dist: pillow
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# VerySteno
VerySteno lets you encode hidden text in sound and images.
## Usage
VerySteno is simple to use. To encode in an image:
```python
from verysteno import EncodeInImage, DecodeFromImage

EncodeInImage("input.png", "This message is secret.")
decoded_message = DecodeFromImage("input_encoded.png")
print(decoded_message)
```
To encode in an sound:
```python
from verysteno import EncodeInSound, DecodeFromSound

EncodeInSound("input.wav", "This is a secret message.")
decoded_message = DecodeFromSound("input_encoded.wav")
print(decoded_message)
```
And to use passwords:
```python
from verysteno import EncodeInSound, DecodeFromSound

EncodeInSound("input.wav", "This secret message has a password!", "verypassword")
decoded_message = DecodeFromSound("input_encoded.wav", "verypassword")
print(decoded_message)
```

