docker-jitsi-meet
docker-jitsi-meet copied to clipboard
feat: Stronger password in gen-passwords.sh
gen-passwords.sh could have stronger passwords
Currently
function generatePassword() {
openssl rand -hex 16
}
Could be updated to:
openssl rand -hex 32
Is there any speed penalty regarding this?