repo.or.cz
/
gnupg.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
* exec.c (make_tempdir) [_WIN32]: Modified to properly handle
[gnupg.git]
/
checks
/
decrypt.test
blob
aab416750eec1f83854c5344f96e1901dea877ab
1
#!/bin/sh
2
3
.
$srcdir
/
defs.inc ||
exit
3
4
5
#info Checking decryption of supplied files
6
for
i
in
$plain_files
;
do
7
echo
"
$usrpass1
"
|
$GPG
--passphrase-fd
0
-o
y
--yes
$srcdir
/
$i
.asc
8
cmp
$i
y || error
"
$i
: mismatch"
9
done
10