Skip to content

Config Documentation

Ravinu H edited this page Jun 11, 2024 · 1 revision

This page defines configuration options available in config.ini

Config

quiet

Controls the output verbosity of all subprograms in the program

Can be set to True or False.

Example: quiet = True

alg

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

art

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

Salt

saltSize

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

Debugging

Note

No options are available for this key yet

Clone this wiki locally