python-mini-project
python-mini-project copied to clipboard
Create passwordmanager.py
Password Manager with Encryption
This is a Python-based password manager that securely stores passwords using encryption. It allows users to store and retrieve passwords for different websites or applications. The passwords are encrypted using the cryptography module and stored locally in a CSV file. For encryption and decryption, the master password is used to derive an encryption key.
Features
- Password encryption using PBKDF2 and AES-based encryption (
cryptographypackage). - Passwords stored securely in a CSV file with a unique salt for each entry.
- Password decryption using the master password to ensure security.
- Command-line based menu for storing and retrieving passwords.
Prerequisites
Ensure you have Python installed on your machine (version 3.6+). You'll also need to install the required cryptography module.
Installation of Required Libraries
To install the necessary dependencies, run:
pip install cryptography