You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/sh
|
|
cap_hex=${1?shs cap key}
|
|
sk_hex=${2?server secret key}
|
|
|
|
cap_b64="$(echo -n "$cap_hex" | xxd -r -p | base64)"
|
|
sk_b64="$(echo -n "$sk_hex" | xxd -r -p | base64 -w 0)"
|
|
|
|
exec sbotc -T -d -c "$cap_b64" -K "$sk_b64"
|