Handle new 12-byte IV format in openbrowser.sh

This commit is contained in:
Travis Burtrum 2018-04-18 19:04:10 -04:00
parent 760d14d160
commit 15dc9ae46b
1 ha cambiato i file con 6 aggiunte e 2 eliminazioni

Vedi File

@ -1,12 +1,16 @@
#!/bin/bash
#exec firefox "$@"
set -e
URL=$1
BROWSER=xdg-open
BROWSER=firefox
AES_GCM="$(dirname $(readlink -f $0))/aesgcm"
if [ ${URL: -97:1} == "#" ]
if [ ${URL: -97:1} == "#" -o ${URL: -89:1} == "#" ]
then
[ -e "$AES_GCM" ] || gcc "$(dirname $(readlink -f $0))/aesgcm.c" -lcrypto -o "$AES_GCM"
curl "$URL" | "$AES_GCM" "${URL: -96}" | feh -. -
iv_key="$(echo "$URL" | sed 's/^.*#//')"
URL="$(echo "$URL" | sed 's/^aesgcm/https/')"
curl "$URL" | "$AES_GCM" "$iv_key" | feh -. -
elif echo $URL | grep -i '\.pgp$'
then
curl "$URL" | gpg2 -d | feh -. -