diff options
author | Werner Koch <[email protected]> | 2008-09-30 10:30:20 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2008-09-30 10:30:20 +0000 |
commit | 8381a43ca7cb277f70c3c91d66a7cf890b96ffb9 (patch) | |
tree | aef47b3f1a7c1d3f9623afad0e8e0000a2b356dd /tests/openpgp/clearsig.test | |
parent | Remove hacks which are not anymore needed since we now require Libgcrypt 1.4 (diff) | |
download | gnupg-8381a43ca7cb277f70c3c91d66a7cf890b96ffb9.tar.gz gnupg-8381a43ca7cb277f70c3c91d66a7cf890b96ffb9.zip |
Add gpgsm server command GETINFO agent-check.
Fix tests.
Diffstat (limited to 'tests/openpgp/clearsig.test')
-rwxr-xr-x | tests/openpgp/clearsig.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/openpgp/clearsig.test b/tests/openpgp/clearsig.test index 78f1fa6a9..74631e180 100755 --- a/tests/openpgp/clearsig.test +++ b/tests/openpgp/clearsig.test @@ -18,7 +18,7 @@ # it is clear text and not binary text. # ====================================== for i in $plain_files plain-large ; do - echo "$usrpass1" | $GPG --passphrase-fd 0 -sat -o x --yes $i + echo "$usrpass1" | $GPG --passphrase-fd 0 --clearsign -o x --yes $i $GPG --verify x done @@ -29,7 +29,7 @@ done if have_pubkey_algo "RSA"; then for i in $plain_files plain-large ; do - $GPG -u $usrname3 --rfc1991 --digest-algo md5 -sat -o x --yes $i + $GPG -u $usrname3 --rfc1991 --digest-algo md5 --clearsign -o x --yes $i $GPG --verify x done fi |