We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
To password protect ExploSig:
Use the argon2_cffi Python package to generate a hash of the desired password:
argon2_cffi
$ pip install argon2-cffi==19.1.0 $ python >>> from argon2 import PasswordHasher >>> ph = PasswordHasher() >>> ph.hash("s3kr3tp4ssw0rd") '$argon2id$v=19$m=102400,t=2,p=8$tSm+JOWigOgPZx/g44K5fQ$WDyus6py50bVFIPkjA28lQ'
Add the following line to the .env file:
.env
EXPLOSIG_PASSWORD_HASH=$argon2id$v=19$m=102400,t=2,p=8$tSm+JOWigOgPZx/g44K5fQ$WDyus6py50bVFIPkjA28lQ