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 (cryptography package).
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.
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
cryptography
package).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: