This is a Python program for managing passwords using Fernet encryption from the cryptography library.
The password manager has the following features:
- Adding a new password for an account
- Viewing saved passwords for different accounts
- Clone the repository to your local machine.
- Install the dependencies using pip install -r requirements.txt.
- Run the password_manager.py file using Python.
- When you run the program, you will be prompted to enter a master password that will be used to encrypt and decrypt your passwords.
- You can then choose to add a new password or view existing passwords by typing "add" or "view" at the prompt.
- If you choose to add a new password, you will be prompted to enter the account name and password. The password will be encrypted and saved to a file called passwords.txt.
- If you choose to view existing passwords, the program will decrypt and display all saved passwords.