2020-06-04 14:51:50 +00:00
|
|
|
#!/usr/bin/env sh
|
2020-06-04 02:47:09 +00:00
|
|
|
|
2021-05-15 17:32:01 +00:00
|
|
|
# Description: Encrypts selected files using gpg. Can encrypt
|
|
|
|
# asymmetrically (key) or symmetrically (passphrase).
|
|
|
|
# If asymmetric encryption is chosen a key can be
|
|
|
|
# chosen from the list of capable public keys using fzf.
|
2020-06-04 02:47:09 +00:00
|
|
|
#
|
2021-05-15 17:32:01 +00:00
|
|
|
# Note: Symmetric encryption only works for a single (current) file as per gpg limitations
|
2020-06-04 02:47:09 +00:00
|
|
|
#
|
|
|
|
# Shell: POSIX compliant
|
|
|
|
# Author: KlzXS
|
|
|
|
|
2023-02-17 13:51:57 +00:00
|
|
|
# shellcheck disable=SC1090,SC1091
|
|
|
|
. "$(dirname "$0")"/.nnn-plugin-helper
|
2020-06-04 02:47:09 +00:00
|
|
|
|
|
|
|
printf "(s)ymmetric, (a)symmetric? [default=a] "
|
|
|
|
read -r symmetry
|
|
|
|
|
|
|
|
if [ "$symmetry" = "s" ]; then
|
2020-06-04 14:51:50 +00:00
|
|
|
gpg --symmetric "$1"
|
2020-06-04 02:47:09 +00:00
|
|
|
else
|
2023-02-17 13:51:57 +00:00
|
|
|
if nnn_use_selection; then
|
|
|
|
clear_sel=1
|
2023-02-17 14:12:07 +00:00
|
|
|
# shellcheck disable=SC2154
|
2020-06-04 14:51:50 +00:00
|
|
|
files=$(tr '\0' '\n' < "$selection")
|
|
|
|
else
|
2023-02-17 13:51:57 +00:00
|
|
|
clear_sel=0
|
2020-06-04 14:51:50 +00:00
|
|
|
files=$1
|
|
|
|
fi
|
|
|
|
|
2020-06-04 02:47:09 +00:00
|
|
|
keyids=$(gpg --list-public-keys --with-colons | grep -E "pub:(.*:){10}.*[eE].*:" | awk -F ":" '{print $5}')
|
|
|
|
|
|
|
|
#awk needs literal $10
|
|
|
|
#shellcheck disable=SC2016
|
|
|
|
keyuids=$(printf "%s" "$keyids" | xargs -n1 -I{} sh -c 'gpg --list-key --with-colons "{}" | grep "uid" | awk -F ":" '\''{printf "%s %s\n", "{}", $10}'\''')
|
|
|
|
|
|
|
|
recipient=$(printf "%s" "$keyuids" | fzf | awk '{print $1}')
|
|
|
|
|
|
|
|
printf "%s" "$files" | xargs -n1 gpg --encrypt --recipient "$recipient"
|
2021-03-27 11:37:58 +00:00
|
|
|
|
2023-02-17 13:51:57 +00:00
|
|
|
# Clear selection
|
|
|
|
if [ "$clear_sel" -eq 1 ] && [ -p "$NNN_PIPE" ]; then
|
|
|
|
printf "-" > "$NNN_PIPE"
|
|
|
|
fi
|
2020-06-04 02:47:09 +00:00
|
|
|
fi
|