Changeset 95688 in vbox
- Timestamp:
- Jul 17, 2022 11:06:41 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/tools/RTSignTool.cpp
r95687 r95688 3723 3723 { "--add-cert", OPT_ADD_CERT, RTGETOPT_REQ_STRING }, 3724 3724 { "/ac", OPT_ADD_CERT, RTGETOPT_REQ_STRING }, 3725 { "--description", 'd', RTGETOPT_REQ_STRING }, 3726 { "--desc", 'd', RTGETOPT_REQ_STRING }, 3727 { "/d", 'd', RTGETOPT_REQ_STRING }, 3728 { "--description-url", 'D', RTGETOPT_REQ_STRING }, 3729 { "--desc-url", 'D', RTGETOPT_REQ_STRING }, 3730 { "/du", 'D', RTGETOPT_REQ_STRING }, 3725 3731 { "--no-signing-time", OPT_NO_SIGNING_TIME, RTGETOPT_REQ_NOTHING }, 3726 3732 OPT_CERT_KEY_GETOPTDEF_ENTRIES("--", 1000), … … 3743 3749 SignToolKeyPair SigningCertKey("signing", true); 3744 3750 RTCRSTORE hAddCerts = NIL_RTCRSTORE; /* leaked if returning directly (--help, --version) */ 3751 const char *pszDescription = NULL; /** @todo implement putting descriptions into the OpusInfo stuff. */ 3752 const char *pszDescriptionUrl = NULL; 3745 3753 bool fTimestampTypeOld = true; 3746 3754 SignToolKeyPair TimestampCertKey("timestamp"); … … 3764 3772 case 't': rcExit2 = HandleOptSignatureType(&enmSigType, ValueUnion.psz); break; 3765 3773 case 'A': fReplaceExisting = false; break; 3774 case 'd': pszDescription = ValueUnion.psz; break; 3775 case 'D': pszDescriptionUrl = ValueUnion.psz; break; 3766 3776 case OPT_HASH_PAGES: fHashPages = true; break; 3767 3777 case OPT_NO_HASH_PAGES: fHashPages = false; break;
Note:
See TracChangeset
for help on using the changeset viewer.