HASHpassword is a cutting-edge application designed to ensure secure password management and authentication within modern telecommunication environments. Leveraging the latest advancements in security technologies, HASHpassword offers robust solutions to safeguard sensitive data and user credentials.
Key Features:
- Secure Registration and Login: Implements strong encryption protocols to protect user credentials during account creation and authentication.
- Two-Factor Authentication (2FA): Enhances security with a seamless integration of TOTP-based 2FA.
- Password Management: Facilitates secure handling of passwords, ensuring compliance with industry standards for password complexity and storage.
- Dynamic QR Code Integration: Generates and displays QR codes within the application for easy setup of 2FA, eliminating the need for external tools.
- User-Friendly Interface: Offers a clean and intuitive GUI.
- Versatile Telecommunication Support: Tailored to meet the specific security challenges faced by telecommunication systems.
-
bcrypt
- Library for password hashing, ensuring secure storage of user credentials.
-
cryptography
- Provides cryptographic recipes and primitives, including encryption, decryption, and secure key handling.
-
pyotp
- Implements Time-based One-Time Password (TOTP) and HMAC-based One-Time Password (HOTP) algorithms for 2FA functionality.
-
mysql-connector-python
- MySQL driver for Python, enabling efficient interaction with MySQL databases for user data storage and retrieval.
-
qrcode
- Library for generating QR codes, facilitating the easy setup of 2FA for users.
-
pillow
- Python Imaging Library (PIL) fork for image processing, used for displaying and resizing QR codes.
-
cffi
- C Foreign Function Interface for Python, used as a dependency for interacting with low-level cryptographic libraries.
-
pycparser
- C parser and AST generator, often used as a dependency by other cryptographic libraries.
-
Create a Virtual Environment
Create a virtual environment in your project's root directory. This isolates your project's dependencies from the global Python environment.python3 -m venv venv
-
Activate the Virtual Environment
Activate the virtual environment to use its isolated environment for your project dependencies.
source venv/bin/activate
venv\Scripts\activate
-
Install Dependenciest
Install all the dependencies listed in therequirements.txt
file using pip:pip install -r requirements.txt
-
Set Up Environment Variables
If your project uses environment variables, create aconfig.json
file in the project's root directory and add the required variables. For example:FERNET_KEY=HaytxFPcnr9OC3waOFuOKLMjWE1HIsafPE6KxfarJV0=
-
Run the project
Now you can run your project. For example, if you have amain.py
file, execute the following command:python main.py