Password generator tools for project apps
Project description
#generatepass
This is password generator::
Hizart.soft H._T@2022
Usage
-
Generate a Password:
from password_generator import generate_pass password = generate_pass() print("Generated Password:", password)
-
Check Password Strength:
from password_generator import check_pass, get_user_password user_password = get_user_password() strength_result = check_pass(user_password) print(strength_result)
-
Encrypt and Decrypt Password:
from password_generator import use_encrypt_pass, use_decrypt_pass, get_user_password user_password = get_user_password() # Encrypt password encrypted_password = use_encrypt_pass(user_password) print("Encrypted Password:", encrypted_password) # Decrypt password decrypted_password = use_decrypt_pass(encrypted_password) print("Decrypted Password:", decrypted_password)
-
Customize Password Length:
from password_generator import generate_pass custom_length_password = generate_pass(length=16) print("Custom Length Password:", custom_length_password)
-
Check Password Strength and Generate
from password_generator import check_pass, generate_pass password = generate_pass() print("Generated Password:", password) strength_result = check_pass(password) print(strength_result)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
generatepass-1.0.tar.gz
(2.4 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file generatepass-1.0.tar.gz.
File metadata
- Download URL: generatepass-1.0.tar.gz
- Upload date:
- Size: 2.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4bb3d43ad8a2f4106c7dcf326be7682eb5bf1b541458088c1d65ea6cf046bc4a
|
|
| MD5 |
1c5151fa0a9d068879e9e1df484fe348
|
|
| BLAKE2b-256 |
27167a89839b69b3dd94a5153da12ab0afa724f3b94b2dcd0db66dad5b45664f
|
File details
Details for the file generatepass-1.0-py3-none-any.whl.
File metadata
- Download URL: generatepass-1.0-py3-none-any.whl
- Upload date:
- Size: 2.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
01f46dc92446a0c386b87efc1f7fc7311561ee2bce18972eca831627a3840e9a
|
|
| MD5 |
3e65c890d1ef70419819e00bbe2f5dfd
|
|
| BLAKE2b-256 |
a4426cfc97efef38f7a83337c3e4311671c259ad39e525188a097a67c441ef7c
|