~ubuntu-branches/ubuntu/quantal/gnutls26/quantal

« back to all changes in this revision

Viewing changes to src/certtool.gaa

  • Committer: Bazaar Package Importer
  • Author(s): Steve Langasek
  • Date: 2011-05-20 13:07:18 UTC
  • mfrom: (12.1.11 sid)
  • Revision ID: james.westby@ubuntu.com-20110520130718-db41dybbanzfvlji
Tags: 2.10.5-1ubuntu1
* Merge from Debian unstable, remaining changes:
  - Fix build failure with --no-add-needed.
  - Build for multiarch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
64
64
 
65
65
option (crq-info) { $action = ACTION_REQUEST; } "Print information on a Certificate Request."
66
66
 
 
67
#int crq_extensions;
 
68
option (no-crq-extensions) { $crq_extensions = 0; } "Do not use extensions in certificate requests."
 
69
 
67
70
option (p12-info) { $action = ACTION_PKCS12_INFO; } "Print information on a PKCS #12 structure."
68
71
 
69
72
option (p7-info) { $action = ACTION_P7_INFO; } "Print information on a PKCS #7 structure."
121
124
#char *template;
122
125
option (template) STR "FILE" { $template = $1 } "Template file to use for non interactive operation."
123
126
 
 
127
#char *pkcs_cipher;
 
128
option (pkcs-cipher) STR "CIPHER" { $pkcs_cipher = $1 } "Cipher to use for pkcs operations (3des,3des-pkcs12,aes-128,aes-192,aes-256,rc2-40,arcfour)."
 
129
 
124
130
 
125
131
#int debug;
126
132
option (d, debug) INT "LEVEL" { $debug = $1 } "specify the debug level. Default is 1."
133
139
        $debug=1; $request = NULL; $infile = NULL; $outfile = NULL; $cert = NULL; 
134
140
        $incert_format = 0; $outcert_format = 0; $action=-1; $pass = NULL; $v1_cert = 0;
135
141
        $export = 0; $template = NULL; $hash=NULL; $fix_key = 0; $quick_random=1; 
136
 
        $privkey_op = 0; }
137
 
 
 
142
        $privkey_op = 0; $pkcs_cipher = "aes-128"; $crq_extensions=1; }