Hash the password asdf
:
$ docker run --rm ghcr.io/bjarkt/bcrypt-hasher -pass asdf
<hash>
Check that the generated hash matches, or not:
$ docker run --rm ghcr.io/bjarkt/bcrypt-hasher -pass password -hash <hash>
Match
Output the hash base 64 encoded:
$ docker run --rm ghcr.io/bjarkt/bcrypt-hasher -pass asdf -b64
<base64 encoded hash>