Password Genie is a secure and user-friendly password management application built with Python and Tkinter. It allows users to generate strong passwords, hash and save passwords for various platforms, and retrieve them securely.
- Password Generation: Create random and strong passwords based on user-defined criteria.
- Password Hashing: Hash passwords securely using SHA-256 for enhanced security.
- Password Storage: Safely store and retrieve passwords for different platforms in an encrypted format. All saved data undergoes robust encryption, ensuring it remains confidential and secure.
- Master Password Protection: Set and verify a master pass-key to ensure access control.
If you are running the program from the python source scripts, you will need to have the python library dependencies installed. Note that this is only true if running the program from source - the binaries include the dependenciess in the executable.
tkinter
: This is a standard Python library for creating GUI applications. It is usually included with Python installations, so you don't need to install it separately. if for some reason you do not have tkinter as a standard library, you can install it with pip:
pip install tkinter
messagebox
from the tkinter library: messagebox is a submodule of the tkinter library.secrets
: This module is used for generating cryptographically strong random numbers suitable for managing data such as passwords, account authentication, and security tokens. It is included in the Python standard library, so you don't need to install it separately.string
: This module contains a collection of string constants and utility functions. It is part of the Python standard library, so you don't need to install it separately.base64
: This module provides functions for encoding binary data to ASCII characters and decoding ASCII characters back to binary data. It is part of the Python standard library, so you don't need to install it separately.cryptography
: This library provides cryptographic recipes and primitives to Python developers. It can be installed using pip:
pip install cryptography
Before opening an issue, please review our Issue Reporting Policy.
- Enter the master password that you want to use for encrypting and retrieving saved passwords:
- Click "Set Master Password" button:
- Do not forget your master password because you will not be able to recover it, and cannot retrieve saved passwords without it.
- Verify Master Password: Enter your master password in the designated field and click "Verify Master Password" to unlock the app. The master password will be used to encrypt and retrieve saved passwords:
- Set the password length by changing the relevant field. The default setting is 12 characters
- Set character requirements for generated passwords. The default setting is to generate passwords that consist of upper and lowercase letters, numbers (digits), and special characters (punctuation).
- Click the "Generate Password" button to generate a password consisting of random characters using the parameters you set.
After generating a strong password, you can assign it to a platform and save it as encrypted text for later retrieval.
- Click the "Copy to Clipboard button to copy the generated password to the clipboard.
- Paste the password into the field labelled "Password:" using your keyboard hotkey
- Enter the platform or site that the password is for in the field labelled "Platform:"
- Click the "Save Password" button to encrypt and save the password and the associated platform.
-
Enter and verify your master password if you haven't already done so (see above).
-
Type the platform for which you want to retrieve the saved password into the Platform Field.
- Click the "Retrieve Password" button to decrypt and show the platform's saved password.
Password Genie is developed and maintained by Kaotick Jay, a seasoned cybersecurity professional with 30 years of experience.
Password Genie is licensed under GNU/GPL3. Feel free to contribute, modify, and distribute it in accordance with the terms of the license.