blob: 438039d2e7c5c897d390e3a777494de1750f357b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
#!/bin/bash
#
# Re-encrypt files to multiple recipients.
#
# Load functions
LIB="`dirname $0`/../../lib/keyringer/functions"
source "$LIB" || exit 1
function keyringer_recrypt {
# Get file
keyringer_get_file "$1"
# Recrypt
$GPG --use-agent -d "$KEYDIR/$FILE" | $GPG --use-agent --armor -e -s $(keyringer_recipients "$RECIPIENTS") > "$KEYDIR/$FILE"
if [ "$?" != "0" ]; then
exit 1
fi
}
if [ ! -z "$2" ]; then
keyringer_recrypt $2
else
cd $KEYDIR && find | while read file; do
if [ ! -d "$KEYDIR/$file" ]; then
keyringer_recrypt "$file"
fi
done
fi
|