320fbd871179d2ec23c594a370c4897b41525591
[platform/upstream/gpg2.git] / tests / openpgp / encrypt-dsa.test
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.
10
11 . $srcdir/defs.inc || exit 3
12
13 #info Checking encryption
14 for i in $plain_files $data_files ; do
15     $GPG $dsa_keyrings --always-trust -e -o x --yes -r "$dsa_usrname2" $i
16     $GPG $dsa_keyrings -o y --yes x
17     cmp $i y || error "$i: mismatch"
18 done
19
20 for ca in `all_cipher_algos` ; do
21     progress "$ca"
22     for i in $plain_files $data_files ; do
23         $GPG $dsa_keyrings --always-trust --cipher-algo $ca -e \
24             -o x --yes -r "$dsa_usrname2" $i
25         $GPG $dsa_keyrings -o y --yes x
26         cmp $i y || error "$i: mismatch"
27     done
28 done
29
30 progress_end