python-mini-project icon indicating copy to clipboard operation
python-mini-project copied to clipboard

Create passwordmanager.py

Open RAM909 opened this issue 1 year ago • 0 comments

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 (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.

Installation of Required Libraries

To install the necessary dependencies, run:

pip install cryptography

RAM909 avatar Oct 24 '24 17:10 RAM909