diff --git a/random-coturn-credentials.sh b/random-coturn-credentials.sh new file mode 100644 index 0000000000000000000000000000000000000000..11f839f69d1d2a24fc09e0d8b818789ba3a6fb49 --- /dev/null +++ b/random-coturn-credentials.sh @@ -0,0 +1,6 @@ +secret=staticAuthSecretHere + +u=$((`date +%s` + 3600)):test +p=$(echo -n $u | openssl dgst -hmac $secret -sha1 -binary | base64) +echo -e "username: $u\npassword: $p" +