TL;DR; A keyed-hash string encoding function.
Useful for setting strong passwords that you will not remember but can regenerate.
Use any hash function you like.
HMAC with BASE64 (no special chars)
echo -n "username" | openssl sha256 -hmac "password" | cut -d " " -f 2 | base64 | cut -c 1-64