summaryrefslogtreecommitdiff
path: root/src/p11tool-args.def
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@redhat.com>2016-09-26 13:47:19 +0200
committerNikos Mavrogiannopoulos <nmav@redhat.com>2016-09-26 13:47:19 +0200
commit73129548538242131efafb4aa228d4b7f1f55c0c (patch)
treef6ad038b75e0dd7271a836c169ae679e35dfe01b /src/p11tool-args.def
parentda4c7a393d273076af4f650f6cb1fd6329078824 (diff)
downloadgnutls-73129548538242131efafb4aa228d4b7f1f55c0c.tar.gz
p11tool: allow to export a certificate with its stapled extensions
Diffstat (limited to 'src/p11tool-args.def')
-rw-r--r--src/p11tool-args.def18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/p11tool-args.def b/src/p11tool-args.def
index b9155c921c..b017ae9345 100644
--- a/src/p11tool-args.def
+++ b/src/p11tool-args.def
@@ -113,18 +113,36 @@ flag = {
name = export;
descrip = "Export the object specified by the URL";
doc = "";
+ flags-cant = export-stapled;
+ flags-cant = export-chain;
+ flags-cant = export-pubkey;
+};
+
+flag = {
+ name = export-stapled;
+ descrip = "Export the certificate object specified by the URL";
+ doc = "Exports the certificate specified by the URL while including any attached extensions to it.";
+ flags-cant = export;
+ flags-cant = export-chain;
+ flags-cant = export-pubkey;
};
flag = {
name = export-chain;
descrip = "Export the certificate specified by the URL and its chain of trust";
doc = "Exports the certificate specified by the URL and generates its chain of trust based on the stored certificates in the module.";
+ flags-cant = export-stapled;
+ flags-cant = export;
+ flags-cant = export-pubkey;
};
flag = {
name = export-pubkey;
descrip = "Export the public key for a private key";
doc = "Exports the public key for the specified private key";
+ flags-cant = export-stapled;
+ flags-cant = export;
+ flags-cant = export-chain;
};
flag = {