EncryptSafe Local is a secure, local password manager with encryption and two-factor authentication using Google Authenticator. Built with Python and Tkinter, it provides a user-friendly GUI for managing encrypted passwords securely on your local machine.
- Password Management: Save, view, and delete encrypted passwords.
- AES Encryption: Ensures secure password storage.
- Google Authenticator Support: TOTP-based two-factor authentication.
- SQLite Database: Stores all user data locally.
- Full-Screen Interface: Clean, user-friendly UI.
Make sure you have Python 3.8 or higher installed.
git clone https://github.com/Navsajan/Encrytsafe_local.git
cd Encrytsafe_local/last
Install the required Python libraries using pip:
pip install -r requirements.txt
Ensure your requirements.txt file includes the following:
tkinter
Pillow
pyotp
qrcode
sqlite3
python main.py
Replace main.py with your script name if it's different.
Launch the application and log in. Save a password by entering the app name, password, and encryption key. View saved passwords using your encryption key and Google Authenticator code. Delete passwords securely if needed.
Encryption: Passwords are AES encrypted before being stored in the SQLite database. Two-Factor Authentication: Google Authenticator TOTP adds an extra layer of security. File Structure
encryptsafe-local/
├── database/
│ └── db_utils.py # Database connection and utility functions
├── encryption/
│ └── aes_encryption.py # Encryption and decryption methods
├── main.py # Main script to run the application
├── requirements.txt # Python package dependencies
└── README.md # Project README
Contributing Contributions are welcome! Please:
Create a new branch (git checkout -b feature/your-feature). Commit your changes (git commit -m 'Add your feature'). Push to the branch (git push origin feature/your-feature). Open a Pull Request.