Metadata-Version: 2.1
Name: as4pgc
Version: 1.0.3
Summary: Audio Stego for Pretty Good Concealing - hide message file in audio file
Home-page: https://github.com/ClarkFieseln/as4pgc
Author: Clark Fieseln
Author-email: 
License: MIT
Keywords: steganography,stego,mp3,audio,hide,cryptography,encryption,compression,security,cybersecurity
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: End Users/Desktop
Classifier: Operating System :: Microsoft :: Windows :: Windows 10
Classifier: Topic :: Security
Description-Content-Type: text/markdown
License-File: LICENSE

# as4pgc
Use "Audio Steganography for Pretty Good Concealing" to hide small files inside .MP3 files.

## Installation
```sh
  pip install as4pgc
```
You also need to install ffmpeg. Download it from here:
https://www.ffmpeg.org/

## How to use it?
Hide a file of any type inside an .mp3 file:
```sh
  as4pgc -w secret.zip carrier.mp3
```
Use option -p to activate plots and track signal processing steps.

Use option -v to output details.

Then recover the hidden file:
```sh
  as4pgc -r stego.mp3
```

Use the option -h for more information:

```sh
  as4pgc -h
```

Configuration settings can be adapted in config.ini (detailed documentation to be provided soon).
## GitHub Project

https://github.com/ClarkFieseln/as4pgc

## License

2021 Clark Fieseln

This repository is licensed under the MIT license. See LICENSE for details.


