summaryrefslogtreecommitdiffhomepage
path: root/applications/luci-app-fwknopd/root/usr/sbin/gen-qr.sh
diff options
context:
space:
mode:
Diffstat (limited to 'applications/luci-app-fwknopd/root/usr/sbin/gen-qr.sh')
-rw-r--r--applications/luci-app-fwknopd/root/usr/sbin/gen-qr.sh22
1 files changed, 22 insertions, 0 deletions
diff --git a/applications/luci-app-fwknopd/root/usr/sbin/gen-qr.sh b/applications/luci-app-fwknopd/root/usr/sbin/gen-qr.sh
new file mode 100644
index 000000000..97493dafe
--- /dev/null
+++ b/applications/luci-app-fwknopd/root/usr/sbin/gen-qr.sh
@@ -0,0 +1,22 @@
+#!/bin/sh
+
+key_base64=$(uci get fwknopd.@access[0].KEY_BASE64)
+key=$(uci get fwknopd.@access[0].KEY)
+hmac_key_base64=$(uci get fwknopd.@access[0].HMAC_KEY_BASE64)
+hmac_key=$(uci get fwknopd.@access[0].HMAC_KEY)
+
+if [ $key_base64 != "" ]; then
+qr="KEY_BASE64:$key_base64"
+fi
+if [ $key != "" ]; then
+qr="$qr KEY:$key"
+
+fi
+if [ $hmac_key_base64 != "" ]; then
+qr="$qr HMAC_KEY_BASE64:$hmac_key_base64"
+fi
+if [ $hmac_key != "" ]; then
+qr="$qr HMAC_KEY:$hmac_key"
+fi
+
+qrencode -o - "$qr"