~ubuntu-branches/ubuntu/feisty/gnupg2/feisty

« back to all changes in this revision

Viewing changes to checks/genkey1024.test

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2006-07-11 11:38:13 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20060711113813-zaw7unlbuh7gyxtl
Tags: 1.9.21-0ubuntu1
New upstream release

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