Strong Passwords Generator made with python.
Project description
f-passwords-generator
Strong Passwords Generator made with python.
Attributes
text(can be modified, have getter and setter): The plain text to be ciphered.key(can be modified, have getter and setter): The key phrase to be used in the ciphering operation on algorithms like playfair (default is 'password').shift(can be modified, have getter and setter): The number to be used as shift on algorithms like caesar (default is 3).algorithm(can be modified, have getter and setter): The algorithm to be used for ciphering operation (default is playfair).characters_replacements(cannot be modified, have only getter): Custom dictionary you can use to change characters after ciphering (default is empty).matrix(cannot be modified, have only getter): The matrix used in the ciphering operation.
Methods
replace_character(char: str, replacement: str): used to add an item tocharacters_replacements.reset_character(char: str): remove the character fromcharacters_replacementsif exists.generate_password(): generate a password from thetextusingkeyorshiftaccording to the usedalgorithmandcharacters_replacements.generate_raw_password(): generate a password from thetextusingkeyorshiftaccording to the usedalgorithemwithoutcharacters_replacements.
How to use
from passwords_generator import PasswordGenerator
pass_gen = PasswordGenerator(text=None, key="password", shift=3, algorithm="playfair")
pass_gen.text = "demo text"
pass_gen.key = "demo key" # will be used on algorithms like playfair (default is 'password')
pass_gen.shift = 3 # will be used on algorithms like caesar (default is 3)
pass_gen.algorithm = 'playfair' # specify the algorithm to use (default is playfair)
pass_gen.replace_character(char="", replacement="")
pass_gen.reset_character(char="")
password = pass_gen.generate_password()
Examples
Example 1
from passwords_generator import PasswordGenerator
pass_gen = PasswordGenerator("demo code", "demo key")
password = pass_gen.generate_password()
Example 2
from passwords_generator import PasswordGenerator
pass_gen = PasswordGenerator()
pass_gen.text = "demo text"
pass_gen.key = "demo key"
password = pass_gen.generate_password()
Example 3
from passwords_generator import PasswordGenerator
pass_gen = PasswordGenerator("demo text", shift=3, algorithm="caesar")
password = pass_gen.generate_password()
Example 4
from passwords_generator import PasswordGenerator
pass_gen = PasswordGenerator()
pass_gen.text = "demo text"
pass_gen.shift = 3
pass_gen.algorithm = 'caesar'
password = pass_gen.generate_password()
Notice
The valid cipher algorithms are only those who has been implemented on cipherspy package.
- caesar
- playfair (default one)
License
The code in this repository is licensed under the MIT License.
You can find the full text of the license in the LICENSE file. For more information, please visit the repository on GitHub.
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
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 f-passwords-generator-2.1.0.tar.gz.
File metadata
- Download URL: f-passwords-generator-2.1.0.tar.gz
- Upload date:
- Size: 3.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eafc52888c4537c35f9ea7bc7b5a213491006102878ec00d843176f1221834a9
|
|
| MD5 |
bd6ee2ab5f01b89dda3e84c12d72ccfb
|
|
| BLAKE2b-256 |
63993e27edf8da33a94b0979848cc9acee80cc57295361c8c4412d96119744e7
|
File details
Details for the file f_passwords_generator-2.1.0-py3-none-any.whl.
File metadata
- Download URL: f_passwords_generator-2.1.0-py3-none-any.whl
- Upload date:
- Size: 4.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9a0be2290c8e0bd5210d7148dd71d4cd0714d4af7ca249479b7a4de6c83b9229
|
|
| MD5 |
26335a51ca48c1f674f91fc5a3c9c9d2
|
|
| BLAKE2b-256 |
045a8e35893038a1b6c6e71416b70c1ad62f992c5975a08f48efd8a56e159b0e
|