~ubuntu-branches/ubuntu/precise/gnupg2/precise-proposed

« back to all changes in this revision

Viewing changes to checks/genkey1024.test

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Urlichs
  • Date: 2006-01-24 04:31:42 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20060124043142-pbg192or6qxv3yk2
Tags: 1.9.20-1
* New Upstream version. Closes:#306890,#344530
  * Closes:#320490: gpg-protect-tool fails to decrypt PKCS-12 files 
* Depend on libopensc2-dev, not -1-. Closes:#348106

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
 
 
3
. $srcdir/defs.inc || exit 3
 
4
 
 
5
../g10/gpg --quiet --batch --quick-random --homedir . --gen-key <<EOF
 
6
Key-Type: DSA
 
7
Key-Length: 1024
 
8
Subkey-Type: ELG-E
 
9
Subkey-Length: 1024
 
10
Name-Real: Harry H.
 
11
Name-Comment: test key 
 
12
Name-Email: hh@@ddorf.de
 
13
Expire-Date: 1
 
14
Passphrase: abc
 
15
%commit
 
16
Key-Type: RSA
 
17
Key-Length: 1024
 
18
Key-Usage: sign,encrypt
 
19
Name-Real: Harry A.
 
20
Name-Comment: RSA test key 
 
21
Name-Email: hh@@ddorf.de
 
22
Expire-Date: 2
 
23
Passphrase: abc
 
24
%commit
 
25
EOF
 
26