-
Notifications
You must be signed in to change notification settings - Fork 2
Config Documentation
Ravinu H edited this page Jun 11, 2024
·
1 revision
Controls the output verbosity of all subprograms in the program
Can be set to True or False.
Example: quiet = True
Controls the algorithm used for hashing passwords
Tip
To view all available hash methods run import hashlib; hashlib.algorithms_available in a python shell
Syntax: alg = <hashMethord>
Example: alg = sha256
Toggle ASCII Art during execution of main.py
Note
ASCII Art will only be displayed when main.py is executed.
Can be set to On or Off
Example: art = On
Set the length of the salt used during hashing of passwords
Tip
Setting saltSize to 0 disables salting
Can be set to any value above 0.
Example: saltSize = 16
Note
No options are available for this key yet