https://unix.stackexchange.com/questions/307994/compute-bcrypt-hash-from-command-line
sudo apt install python3-bcrypt
python -c ‘import bcrypt, getpass; print(bcrypt.hashpw(getpass.getpass().encode(), bcrypt.gensalt()).decode())’
https://unix.stackexchange.com/questions/307994/compute-bcrypt-hash-from-command-line
sudo apt install python3-bcrypt
python -c ‘import bcrypt, getpass; print(bcrypt.hashpw(getpass.getpass().encode(), bcrypt.gensalt()).decode())’