agent/
[gnupg.git] / tests / openpgp / signencrypt.test
blob8ccbaf7cab3b3f9e589e7659aceb664f2e4e3d63
1 #!/bin/sh
2 # Copyright 1998,1999,2000,2001,2002,2003,2004,2005,2006,
3 # 2007 Free Software Foundation, Inc.
4 # This file is free software; as a special exception the author gives
5 # unlimited permission to copy and/or distribute it, with or without
6 # modifications, as long as this notice is preserved. This file is
7 # distributed in the hope that it will be useful, but WITHOUT ANY
8 # WARRANTY, to the extent permitted by law; without even the implied
9 # warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
11 . $srcdir/defs.inc || exit 3
14 info "Checking signing and encryption"
15 for i in $plain_files $data_files ; do
16 echo "$usrpass1" | $GPG --passphrase-fd 0 --always-trust \
17 -se -o x --yes -r "$usrname2" $i
18 $GPG -o y --yes x
19 cmp $i y || error "$i: mismatch"
20 done
22 i=$srcdir/bug537-test.data.asc
23 info "Checking bug 537: MDC problem with old style compressed packets."
24 echo "$usrpass1" | $GPG --passphrase-fd 0 -o y --yes $i
25 tmp=`$GPG --with-colons --print-md sha1 <y`
26 if [ "$tmp" != ":2:4336AE2A528FAE091E73E59E325B588FEE795F9B:" ]; then
27 error "$i: mismatch (bug 537)"