Hash generator
Use this tool if you need to generate password hashes manually for Ubooquity.
Hash generation with Python
Hashes can also easily be generated using code. See example below with Python (just replace the
my_password
placeholder):
import hmac
import hashlib
print(hmac.new(b'my_password', b'd0809793df2c3be1a77a229781cfe1cdb1a2a', hashlib.sha256).hexdigest())