summaryrefslogtreecommitdiffhomepage
path: root/applications/luci-app-fwknopd/root/usr/sbin/gen-qr.sh
blob: 97493dafedf32011c6a59f2b5fb6d3af21ba99f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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"