~ubuntu-branches/ubuntu/hardy/gnupg2/hardy

« back to all changes in this revision

Viewing changes to tests/openpgp/encrypt.test

  • Committer: Bazaar Package Importer
  • Author(s): Michael Bienia
  • Date: 2007-05-15 13:54:55 UTC
  • mfrom: (1.1.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20070515135455-89qfyalmgjy6gcqw
Tags: 2.0.4-1ubuntu1
* Merge from debian unstable, remaining changes:
  - Remove libpcsclite-dev, libopensc2-dev build dependencies (they are in
    universe).
  - Build-depend on libcurl3-gnutls-dev
  - g10/call-agent.c: set DBG_ASSUAN to 0 to suppress a debug message
  - Include /doc files as done with gnupg
  - debian/rules: add doc/com-certs.pem to the docs for gpgsm
  - debian/copyright: update download url
  - debian/README.Debian: remove note the gnupg2 isn't released yet.
  - debian/control: Change Maintainer/XSBC-Original-Maintainer field.

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
 
12
12
algos="3des"
13
13
 
14
 
if have_cipher_algo "idea"; then
15
 
   algos="$algos idea"
16
 
fi
17
 
 
18
 
if have_cipher_algo "cast5"; then
19
 
   algos="$algos idea"
20
 
fi
21
 
 
22
 
if have_cipher_algo "blowfish"; then
23
 
   algos="$algos idea"
24
 
fi
25
 
 
26
 
if have_cipher_algo "aes"; then
 
14
if have_cipher_algo "IDEA"; then
 
15
   algos="$algos idea"
 
16
fi
 
17
 
 
18
if have_cipher_algo "CAST5"; then
 
19
   algos="$algos cast5"
 
20
fi
 
21
 
 
22
if have_cipher_algo "BLOWFISH"; then
 
23
   algos="$algos blowfish"
 
24
fi
 
25
 
 
26
if have_cipher_algo "AES"; then
27
27
   algos="$algos aes aes192 aes256"
28
28
fi
29
29
 
30
 
if have_cipher_algo "twofish"; then
 
30
if have_cipher_algo "TWOFISH"; then
31
31
   algos="$algos twofish"
32
32
fi
33
33