diff options
author | Rich Salz <rsalz@openssl.org> | 2017-05-21 03:44:31 +0200 |
---|---|---|
committer | Rich Salz <rsalz@openssl.org> | 2017-05-21 23:20:31 +0200 |
commit | 48b5352212d8c68f7fd071ca9f38822b7e954c5a (patch) | |
tree | 0d85f3a02545caa8ddd9b4ef4268942ce36775f5 /apps/ts.c | |
parent | test/run_tests.pl: don't mask test failures. (diff) | |
download | openssl-48b5352212d8c68f7fd071ca9f38822b7e954c5a.tar.xz openssl-48b5352212d8c68f7fd071ca9f38822b7e954c5a.zip |
-inkey can be an identifier, not just a file
update pkcs12, smime, ts apps.
Reviewed-by: Tim Hudson <tjh@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/3507)
Diffstat (limited to 'apps/ts.c')
-rw-r--r-- | apps/ts.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -106,7 +106,7 @@ const OPTIONS ts_options[] = { {"reply", OPT_REPLY, '-', "Generate a TS reply"}, {"queryfile", OPT_QUERYFILE, '<', "File containing a TS query"}, {"passin", OPT_PASSIN, 's', "Input file pass phrase source"}, - {"inkey", OPT_INKEY, '<', "File with private key for reply"}, + {"inkey", OPT_INKEY, 's', "File with private key for reply"}, {"signer", OPT_SIGNER, 's', "Signer certificate file"}, {"chain", OPT_CHAIN, '<', "File with signer CA chain"}, {"verify", OPT_VERIFY, '-', "Verify a TS response"}, |