⪼ Made with 💜 by Polyglot.
openssl rand -base64 16
For storing user password encrypted at rest with base64 hashing so it can be passed around as plain text
set -x TENANT_PASSWORD_ENCRYPTION_KEY (openssl rand -hex 16|cut -c1-31|base64)
export TENANT_PASSWORD_ENCRYPTION_KEY=$(openssl rand -hex 16|cut -c1-31|base64)