This project demonstrates how to encrypt and decrypt audio files using the AES encryption algorithm in Python. The main goal is to ensure the security of audio data during transmission or storage.
- Encrypt audio files to prevent unauthorized access
- Decrypt encrypted audio files to retrieve the original audio
- Save encryption keys securely in a separate file
- Handle WAV audio format
- Python 3.x
pydub
library for handling audio filescryptography
library for encryption and decryption
Install the required libraries using pip:
pip install pydub cryptography numpy