summaryrefslogtreecommitdiff
path: root/src/certtool.gaa
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@gnutls.org>2004-04-29 06:29:14 +0000
committerNikos Mavrogiannopoulos <nmav@gnutls.org>2004-04-29 06:29:14 +0000
commitbd9089ea2e8124560a24a21932e318c230868c09 (patch)
tree0bd7e4afda4babe2511ee212c1a74605bce1c1ee /src/certtool.gaa
parent403cb9b81a15a34be4a1ada5739f304e053aba6e (diff)
downloadgnutls-bd9089ea2e8124560a24a21932e318c230868c09.tar.gz
added xml exporting capabilities to certtool utility.
Diffstat (limited to 'src/certtool.gaa')
-rw-r--r--src/certtool.gaa5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/certtool.gaa b/src/certtool.gaa
index 3793fca9fc..082f9626db 100644
--- a/src/certtool.gaa
+++ b/src/certtool.gaa
@@ -75,6 +75,9 @@ option (export-ciphers) { $export=1 } "Use weak encryption algorithms."
#int incert_format;
option (inder) { $incert_format=1 } "Use DER format for input certificates and private keys."
+#int xml;
+option (xml) { $xml=1 } "Use XML format for output certificates."
+
#int outcert_format;
option (outder) { $outcert_format=1 } "Use DER format for output certificates and private keys."
@@ -102,5 +105,5 @@ option ( copyright) { print_license(); exit(0); } "shows the program's license"
init { $bits = 1024; $pkcs8 = 0; $privkey = NULL; $ca=NULL; $ca_privkey = NULL;
$debug=1; $request = NULL; $infile = NULL; $outfile = NULL; $cert = NULL;
$incert_format = 0; $outcert_format = 0; $action=-1; $pass = NULL;
- $export = 0; $template = NULL; }
+ $export = 0; $template = NULL; $xml = 0;}