projects
/
gnupg.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Update head to match stable 1.0
[gnupg.git]
/
checks
/
armencrypt.test
1
#!/bin/sh
2
3
. $srcdir/defs.inc || exit 3
4
5
#info Checking armored encryption
6
for i in $plain_files $data_files ; do
7
$GPG --always-trust -ea -o x --yes -r "$usrname2" $i
8
$GPG -o y --yes x
9
cmp $i y || error "$i: mismatch"
10
done
11