blob: 356d1bda7d59bd74433c730c342a9772aac1edab (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/sh
. $srcdir/defs.inc || exit 3
#info Checking armored encryption
for i in $plain_files $data_files ; do
$GPG --always-trust -ea -o x --yes -r "$usrname2" $i
$GPG -o y --yes x
cmp $i y || error "$i: mismatch"
done
|