diff options
author | Tobias Brunner <tobias@strongswan.org> | 2014-12-19 16:30:47 +0100 |
---|---|---|
committer | Tobias Brunner <tobias@strongswan.org> | 2014-12-19 16:31:36 +0100 |
commit | 6683cf6a5ad0eeb359de80c56068532116a17f17 (patch) | |
tree | 9b190ce5097d6fd523fc1ae6d5bf6c43bdb8d52b /src | |
parent | a6c0dec0e5dfe86e2e9ebe6ea09f43f43ae7fab4 (diff) | |
download | strongswan-6683cf6a5ad0eeb359de80c56068532116a17f17.tar.bz2 strongswan-6683cf6a5ad0eeb359de80c56068532116a17f17.tar.xz |
pki: Document correct output formats for --pkcs12 --export
Diffstat (limited to 'src')
-rw-r--r-- | src/pki/commands/pkcs12.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pki/commands/pkcs12.c b/src/pki/commands/pkcs12.c index 67f026843..dcd1496ba 100644 --- a/src/pki/commands/pkcs12.c +++ b/src/pki/commands/pkcs12.c @@ -235,13 +235,13 @@ static void __attribute__ ((constructor))reg() command_register((command_t) { pkcs12, 'u', "pkcs12", "PKCS#12 functions", {"--export index|--list [--in file]", - "[--outform der|pem|dnskey|sshkey]"}, + "[--outform der|pem]"}, { {"help", 'h', 0, "show usage information"}, {"in", 'i', 1, "input file, default: stdin"}, {"list", 'l', 0, "list certificates and keys"}, {"export", 'e', 1, "export the credential with the given index"}, - {"outform", 'f', 1, "encoding of extracted public key, default: der"}, + {"outform", 'f', 1, "encoding of exported credentials, default: der"}, } }); } |