Skip to content

Commit

Permalink
Updated the readme file as per latest changes
Browse files Browse the repository at this point in the history
  • Loading branch information
SVijayB committed Jul 8, 2020
1 parent 6592da5 commit 775d083
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Password Manager/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,11 @@ As the number of accounts created increases, it has become harder to collect and
<img src="https://i.ibb.co/0yRHbTP/SS.png" alt="SS" border="0">
</p>

Run the `Password_manager.p` file present in the `src` folder.
**Prerequisites** : Python 3 and Cryptography module.

Before running the application, you need to install the [cryptography](https://pypi.org/project/cryptography/) module. To do so, launch your terminal and type `pip install cryptography`. Once completed, you are ready to use the application.

Run the `Password_manager.py` file present in the `src` folder.

You can do that by just double clicking on the file if you have the python launcher installed. Else, `cd/` to the `src` folder and type `python Password_manager.py`.

Expand Down
2 changes: 2 additions & 0 deletions Password Manager/src/Modules/Password.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ def password_function():
password = f.read()
decrypted = fernet.decrypt(password)
decrypted = decrypted.decode()
green("PASSWORD MANAGER")
cyan("-" * 25)
while(True):
entered_password = input("Enter your password \n> ")
if(decrypted == entered_password):
Expand Down

0 comments on commit 775d083

Please sign in to comment.