Changeset 96764 in vbox for trunk/src/VBox
- Timestamp:
- Sep 16, 2022 9:11:47 AM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/tools/RTSignTool.cpp
r96755 r96764 3171 3171 RT_NOREF_PV(enmLevel); 3172 3172 RTStrmWrappedPrintf(pStrm, RTSTRMWRAPPED_F_HANGING_INDENT, 3173 "extract-exe-signer-cert [--ber|--cer|--der] [--signature-index|-i <num>] [-- exe|-e] <exe> [--output|-o] <outfile.cer>\n");3173 "extract-exe-signer-cert [--ber|--cer|--der] [--signature-index|-i <num>] [--input|--exe|-e] <exe> [--output|-o] <outfile.cer>\n"); 3174 3174 return RTEXITCODE_SUCCESS; 3175 3175 } … … 3219 3219 { "--der", 'd', RTGETOPT_REQ_NOTHING }, 3220 3220 { "--exe", 'e', RTGETOPT_REQ_STRING }, 3221 { "--input", 'e', RTGETOPT_REQ_STRING }, 3221 3222 { "--output", 'o', RTGETOPT_REQ_STRING }, 3222 3223 { "--signature-index", 'i', RTGETOPT_REQ_UINT32 }, … … 3780 3781 case 'q': State.cVerbosity = 0; break; 3781 3782 case 'V': return HandleVersion(cArgs, papszArgs); 3782 case 'h': return HelpExtract ExeSignerCert(g_pStdOut, RTSIGNTOOLHELP_FULL);3783 case 'h': return HelpExtractRootCommon(g_pStdOut, RTSIGNTOOLHELP_FULL, fTimestamp); 3783 3784 3784 3785 case VINF_GETOPT_NOT_OPTION: … … 3831 3832 RT_NOREF_PV(enmLevel); 3832 3833 RTStrmWrappedPrintf(pStrm, RTSTRMWRAPPED_F_HANGING_INDENT, 3833 "extract-exe-signerature [-- exe|-e] <exe> [--output|-o] <outfile.pkcs7>\n");3834 "extract-exe-signerature [--input|--exe|-e] <exe> [--output|-o] <outfile.pkcs7>\n"); 3834 3835 return RTEXITCODE_SUCCESS; 3835 3836 } … … 3843 3844 { 3844 3845 { "--exe", 'e', RTGETOPT_REQ_STRING }, 3846 { "--input", 'e', RTGETOPT_REQ_STRING }, 3845 3847 { "--output", 'o', RTGETOPT_REQ_STRING }, 3846 3848 { "--force", 'f', RTGETOPT_REQ_NOTHING },
Note:
See TracChangeset
for help on using the changeset viewer.