{"id":3394,"date":"2023-12-19T05:17:23","date_gmt":"2023-12-19T05:17:23","guid":{"rendered":"https:\/\/signmycode.com\/resources\/?p=3394"},"modified":"2024-09-17T07:45:40","modified_gmt":"2024-09-17T07:45:40","slug":"how-to-use-jsign-to-sign-windows-executable-wrappers-and-installers","status":"publish","type":"post","link":"https:\/\/signmycode.com\/resources\/how-to-use-jsign-to-sign-windows-executable-wrappers-and-installers","title":{"rendered":"How to Use Jsign to Sign Windows Executable Wrappers and Installers?"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">In the catalog of code signing tools, Jsign is a highly preferred tool. It fulfills all the requirements and supports all executable files, installers, and wrappers signing. In addition, you can use it with a physical and cloud-based HSM.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">To know more about the signing of executable wrappers and installers, continue further.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What is Jsign?<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Jsign is a Java-based tool developed as the Microsoft Authenticode implementation and alternative to SignTool. <strong>It is used for signing and timestamping the executable files, installers, and wrappers, such as:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>MSI (Microsoft Installers)<\/li>\n\n\n\n<li>CAB (Cabinet Files)<\/li>\n\n\n\n<li>CAT (Catalog Files)<\/li>\n\n\n\n<li>Windows Packages<\/li>\n\n\n\n<li>Scripts based on VBScript, PowerShell, Jscript, and WSF<\/li>\n\n\n\n<li>Installers generated using NSIS, install4j, exe4j, launch4j, and msitools<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Top Jsign Features To Know<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Jsign offers an extended range of features that make it a top software signing tool. <strong>The feature list includes:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Support for the latest hashing algorithms, including SHA-1, 256, 384, and 512.<\/li>\n\n\n\n<li>Support for PKCS#11, PKCS#12, DigiCert ONE, Google Cloud KMS, HashiCorp Vault, and AWS KMS.<\/li>\n\n\n\n<li>Enables the use of multiple signs for a single executable file.<\/li>\n\n\n\n<li>Allows the usage of PVK and PEM formats of private key.<\/li>\n\n\n\n<li>Compatibility with Maven, Gradle, and Ant.<\/li>\n\n\n\n<li>Allows usage of Javadoc, an API for Authenticode Signing<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">The Use of Jsign with Code Signing Platforms<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">The Jsign tool is compatible with all significant platforms and cloud-HSMs. You can follow the commands and approaches below to sign your executables according to the platform.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Signing with a Java Keystore<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">To sign with Java keystore using the Jsign, you are required to execute the following command.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code> jsign --keystore keystore.jks --storepass password --alias test \\\n       --tsaurl http:\/\/timestamp.sectigo.com application.exe<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Here, the command initiates the Jsign tool, and then the keystore, password, timestamp URL, and executable file are defined. As a result, you will receive signed and timestamped software.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Signing with a YubiKey<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Before you use Jsign with Yubikey, the Yubico PIV tool should be installed on your system. Once you install it, execute the following command by replacing the parameters according to your certificate, password, and executable file.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>jsign --storetype YUBIKEY --storepass 123456 --certfile full-chain.pem application.exe\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">If your Yubikey HSM stores more than one X.509\/code signing certificate, then defining an alias is necessary.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Signing with a SafeNet eToken<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">To use the combination of Jsign and SafeNet eToken, you must install the SafeNet Authentication Client software. Following it, run the below command, defining your parameters.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>jsign --storetype ETOKEN --storepass &lt;PIN&gt; --certfile full-chain.pem application.exe\n<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Signing with a Smart Card<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">To use a smart card, install the OpenSC on your computer system. If multiple devices are in the network, then define the &#8220;keystore&#8221; parameter in the following command.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>jsign --storetype OPENSC --storepass 123456 --alias test \\\n       --certfile full-chain.pem application.exe<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Signing with AWS Key Management Service<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">The AWS Key management service lets you store the code signing certificate private key in a cloud-based HSM. While using AWS KSM with Jsign, you need to provide the certificate separately and define the configured AWS region. The command for it is like this:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>jsign --storetype AWS \\\n       --keystore eu-west-3 \\\n       --storepass \"&lt;access-key&gt;|&lt;secret-key&gt;|&lt;session-token&gt;\" \\\n       --alias 12345678-abcd-1234-cdef-1234567890ab \\\n       --certfile full-chain.pem application.exe<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">In the above command, &#8220;keystore&#8221; is used to define the region, &#8220;storepass,&#8221; for access, session, and token key that you saved on the AWS platform. The Jsign will use the &#8220;storepass&#8221; parameter for referring to the defined variables or the services, such as IMDSv2 running on the EC2 instance of AWS.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Signing with Azure Key Vault<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">To use the key and certificate stored in Azure Key Vault, execute the below command, defining storetype, keystore, password, and executable file parameters.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>jsign --storetype AZUREKEYVAULT \\\n       --keystore vaultname \\\n       --storepass &lt;api-access-token&gt; \\\n       --alias test application.exe<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Signing with DigiCert ONE<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">To use Jsign with DigiCert ONE, a PKCS#12 holding the certificate and API key is required. The certificate in PKCS#12 will be used for authentication purposes. For signing, the keys and certificate stored in DigiCert ONE will be used with the help of the following command.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>jsign --storetype DIGICERTONE \\\n       --storepass \"&lt;api-key&gt;|\/path\/to\/Certificate_pkcs12.p12|&lt;password&gt;\" \\\n       --alias test application.exe<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Signing with Google Cloud KMS<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">To utilize Jsign with Google Cloud KMS, you should ensure that the following permissions are permitted on your Google Cloud account:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>cloudkms.cryptoKeyVersions.useToSign<\/li>\n\n\n\n<li>cloudkms.cryptoKeyVersions.list<\/li>\n\n\n\n<li>cloudkms.cryptoKeys.list<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">Further, execute the following Jsign command and provide the certificate separately as defined.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>jsign --storetype GOOGLECLOUD \\\n       --keystore projects\/first-rain-123\/locations\/global\/keyRings\/mykeyring \\\n       --storepass &lt;api-access-token&gt; \\\n       --alias test\/cryptoKeyVersions\/1 \\\n       --certfile full-chain.pem application.exe<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">You can use the <strong>&#8220;\u2014alias&#8221;<\/strong> parameter as a test if you don&#8217;t know the key version or want to use the latest key version. But, it will take some additional time, as an added API call will be generated to fetch the latest key version.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Signing with Google Cloud KMS via HashiCorp Vault<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">There\u2019s no major change in the command to use Google Cloud KMS through HashiCorp Vault. The &#8220;keystore&#8221; will refer to the HashiCorp Vault via the defined URL, listing server location, API version, and path to the secret engine.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>jsign --storetype HASHICORPVAULT \\\n       --keystore https:\/\/vault.example.com\/v1\/gcpkms \\\n       --storepass &lt;vault-token&gt; \\\n       --alias test:1 \\\n       --certfile full-chain.pem application.exe<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Which is the Jsign Compatible Code Signing Certificate?<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">To sign your executable files with Jsign and compatible platforms, you should purchase the certificate from an authentic vendor. Certera, Comodo, DigiCert, and Sectigo are the top certificate authorities whose products are recognized in the industry.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">You should also consider such a top CA while availing of a digital certificate. It will help you comply with the latest CA\/B protocols and store the private key on a physical as well as cloud-based HSM. Also, you will get the leverage of choosing from IV, OV, and EV certificates, which are compatible with all significant signing tools, platforms, and operating systems.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Concluding Up<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Jsign is a highly used signing tool for securing executable files, including installers and Windows wrappers. It&#8217;s a Java implementation that provides functionalities similar to Microsoft Authenticode. <\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Moreover, it can be used with all major KMS and cloud-HSM systems, such as AWS HSM, Google Cloud KMS, DigiCert ONE, and more. Thus, you should prefer using Jsign due to its extensive features and seamless cross-platform compatibility.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In the catalog of code signing tools, Jsign is a highly preferred tool. It fulfills all the requirements and supports all executable files, installers, and wrappers signing. In addition, you can use it with a physical and cloud-based HSM. To know more about the signing of executable wrappers and installers, continue further. What is Jsign?&hellip; <a class=\"more-link\" href=\"https:\/\/signmycode.com\/resources\/how-to-use-jsign-to-sign-windows-executable-wrappers-and-installers\">Read More <span class=\"screen-reader-text\">How to Use Jsign to Sign Windows Executable Wrappers and Installers?<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":3395,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2],"tags":[474,475,476],"class_list":["post-3394","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-code-signing-tutorials","tag-java-implementation-of-microsoft-authenticode","tag-sign-with-jsign","tag-signing-a-file-using-jsign","entry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.9 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to use Jsign to Sign Executable Wrappers and Installers?<\/title>\n<meta name=\"description\" content=\"Jsign is a Java implementation of Microsoft Authenticode that sign executables and installers with multiple tools, platforms like YubiKey, Aws CloudHSM, KeyStore, etc.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/signmycode.com\/resources\/how-to-use-jsign-to-sign-windows-executable-wrappers-and-installers\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to use Jsign to Sign Executable Wrappers and Installers?\" \/>\n<meta property=\"og:description\" content=\"Jsign is a Java implementation of Microsoft Authenticode that sign executables and installers with multiple tools, platforms like YubiKey, Aws CloudHSM, KeyStore, etc.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/signmycode.com\/resources\/how-to-use-jsign-to-sign-windows-executable-wrappers-and-installers\" \/>\n<meta property=\"og:site_name\" content=\"SignMyCode - Resources\" \/>\n<meta property=\"article:published_time\" content=\"2023-12-19T05:17:23+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-09-17T07:45:40+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/signmycode.com\/resources\/wp-content\/uploads\/2023\/12\/use-jsign-to-sign-executable-wrappers-jpg.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"912\" \/>\n\t<meta property=\"og:image:height\" content=\"440\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Janki Mehta\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:image\" content=\"https:\/\/signmycode.com\/resources\/wp-content\/uploads\/2023\/12\/use-jsign-to-sign-executable-wrappers-jpg.webp\" \/>\n<meta name=\"twitter:creator\" content=\"@Sign_My_Code\" \/>\n<meta name=\"twitter:site\" content=\"@Sign_My_Code\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Janki Mehta\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/signmycode.com\\\/resources\\\/how-to-use-jsign-to-sign-windows-executable-wrappers-and-installers#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/signmycode.com\\\/resources\\\/how-to-use-jsign-to-sign-windows-executable-wrappers-and-installers\"},\"author\":{\"name\":\"Janki Mehta\",\"@id\":\"https:\\\/\\\/signmycode.com\\\/resources\\\/#\\\/schema\\\/person\\\/2e80276fd34fd5439c04cd3cb96a389f\"},\"headline\":\"How to Use Jsign to Sign Windows Executable Wrappers and Installers?\",\"datePublished\":\"2023-12-19T05:17:23+00:00\",\"dateModified\":\"2024-09-17T07:45:40+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/signmycode.com\\\/resources\\\/how-to-use-jsign-to-sign-windows-executable-wrappers-and-installers\"},\"wordCount\":914,\"publisher\":{\"@id\":\"https:\\\/\\\/signmycode.com\\\/resources\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/signmycode.com\\\/resources\\\/how-to-use-jsign-to-sign-windows-executable-wrappers-and-installers#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/signmycode.com\\\/resources\\\/wp-content\\\/uploads\\\/2023\\\/12\\\/use-jsign-to-sign-executable-wrappers-jpg.webp\",\"keywords\":[\"Java implementation of Microsoft Authenticode\",\"Sign with jSign\",\"signing a file using JSign\"],\"articleSection\":[\"Code Signing Tutorials\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/signmycode.com\\\/resources\\\/how-to-use-jsign-to-sign-windows-executable-wrappers-and-installers\",\"url\":\"https:\\\/\\\/signmycode.com\\\/resources\\\/how-to-use-jsign-to-sign-windows-executable-wrappers-and-installers\",\"name\":\"How to use Jsign to Sign Executable Wrappers and Installers?\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/signmycode.com\\\/resources\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/signmycode.com\\\/resources\\\/how-to-use-jsign-to-sign-windows-executable-wrappers-and-installers#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/signmycode.com\\\/resources\\\/how-to-use-jsign-to-sign-windows-executable-wrappers-and-installers#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/signmycode.com\\\/resources\\\/wp-content\\\/uploads\\\/2023\\\/12\\\/use-jsign-to-sign-executable-wrappers-jpg.webp\",\"datePublished\":\"2023-12-19T05:17:23+00:00\",\"dateModified\":\"2024-09-17T07:45:40+00:00\",\"description\":\"Jsign is a Java implementation of Microsoft Authenticode that sign executables and installers with multiple tools, platforms like YubiKey, Aws CloudHSM, KeyStore, etc.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/signmycode.com\\\/resources\\\/how-to-use-jsign-to-sign-windows-executable-wrappers-and-installers#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/signmycode.com\\\/resources\\\/how-to-use-jsign-to-sign-windows-executable-wrappers-and-installers\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/signmycode.com\\\/resources\\\/how-to-use-jsign-to-sign-windows-executable-wrappers-and-installers#primaryimage\",\"url\":\"https:\\\/\\\/signmycode.com\\\/resources\\\/wp-content\\\/uploads\\\/2023\\\/12\\\/use-jsign-to-sign-executable-wrappers-jpg.webp\",\"contentUrl\":\"https:\\\/\\\/signmycode.com\\\/resources\\\/wp-content\\\/uploads\\\/2023\\\/12\\\/use-jsign-to-sign-executable-wrappers-jpg.webp\",\"width\":912,\"height\":440,\"caption\":\"Sign Windows Executable File using Jsign\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/signmycode.com\\\/resources\\\/how-to-use-jsign-to-sign-windows-executable-wrappers-and-installers#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/signmycode.com\\\/resources\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Use Jsign to Sign Windows Executable Wrappers and Installers?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/signmycode.com\\\/resources\\\/#website\",\"url\":\"https:\\\/\\\/signmycode.com\\\/resources\\\/\",\"name\":\"SignMyCode - Resources\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/signmycode.com\\\/resources\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/signmycode.com\\\/resources\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/signmycode.com\\\/resources\\\/#organization\",\"name\":\"SignMyCode\",\"url\":\"https:\\\/\\\/signmycode.com\\\/resources\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/signmycode.com\\\/resources\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/signmycode.com\\\/resources\\\/wp-content\\\/uploads\\\/2021\\\/11\\\/logo1.png\",\"contentUrl\":\"https:\\\/\\\/signmycode.com\\\/resources\\\/wp-content\\\/uploads\\\/2021\\\/11\\\/logo1.png\",\"width\":135,\"height\":86,\"caption\":\"SignMyCode\"},\"image\":{\"@id\":\"https:\\\/\\\/signmycode.com\\\/resources\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/x.com\\\/Sign_My_Code\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/signmycode.com\\\/resources\\\/#\\\/schema\\\/person\\\/2e80276fd34fd5439c04cd3cb96a389f\",\"name\":\"Janki Mehta\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/74a1328bbec77f3a65123c2396050e61b60fe3831478ceb96b55e5a0fe44e370?s=96&d=blank&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/74a1328bbec77f3a65123c2396050e61b60fe3831478ceb96b55e5a0fe44e370?s=96&d=blank&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/74a1328bbec77f3a65123c2396050e61b60fe3831478ceb96b55e5a0fe44e370?s=96&d=blank&r=g\",\"caption\":\"Janki Mehta\"},\"description\":\"Janki Mehta is a Cyber-Security Enthusiast who constantly updates herself with new advancements in the Web\\\/Cyber Security niche. Along with theoretical knowledge, she also implements her practical expertise in day-to-day tasks and helps others to protect themselves from threats.\",\"sameAs\":[\"http:\\\/\\\/smcresources.ssltoolsonline.com\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to use Jsign to Sign Executable Wrappers and Installers?","description":"Jsign is a Java implementation of Microsoft Authenticode that sign executables and installers with multiple tools, platforms like YubiKey, Aws CloudHSM, KeyStore, etc.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/signmycode.com\/resources\/how-to-use-jsign-to-sign-windows-executable-wrappers-and-installers","og_locale":"en_US","og_type":"article","og_title":"How to use Jsign to Sign Executable Wrappers and Installers?","og_description":"Jsign is a Java implementation of Microsoft Authenticode that sign executables and installers with multiple tools, platforms like YubiKey, Aws CloudHSM, KeyStore, etc.","og_url":"https:\/\/signmycode.com\/resources\/how-to-use-jsign-to-sign-windows-executable-wrappers-and-installers","og_site_name":"SignMyCode - Resources","article_published_time":"2023-12-19T05:17:23+00:00","article_modified_time":"2024-09-17T07:45:40+00:00","og_image":[{"width":912,"height":440,"url":"https:\/\/signmycode.com\/resources\/wp-content\/uploads\/2023\/12\/use-jsign-to-sign-executable-wrappers-jpg.webp","type":"image\/jpeg"}],"author":"Janki Mehta","twitter_card":"summary_large_image","twitter_image":"https:\/\/signmycode.com\/resources\/wp-content\/uploads\/2023\/12\/use-jsign-to-sign-executable-wrappers-jpg.webp","twitter_creator":"@Sign_My_Code","twitter_site":"@Sign_My_Code","twitter_misc":{"Written by":"Janki Mehta","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/signmycode.com\/resources\/how-to-use-jsign-to-sign-windows-executable-wrappers-and-installers#article","isPartOf":{"@id":"https:\/\/signmycode.com\/resources\/how-to-use-jsign-to-sign-windows-executable-wrappers-and-installers"},"author":{"name":"Janki Mehta","@id":"https:\/\/signmycode.com\/resources\/#\/schema\/person\/2e80276fd34fd5439c04cd3cb96a389f"},"headline":"How to Use Jsign to Sign Windows Executable Wrappers and Installers?","datePublished":"2023-12-19T05:17:23+00:00","dateModified":"2024-09-17T07:45:40+00:00","mainEntityOfPage":{"@id":"https:\/\/signmycode.com\/resources\/how-to-use-jsign-to-sign-windows-executable-wrappers-and-installers"},"wordCount":914,"publisher":{"@id":"https:\/\/signmycode.com\/resources\/#organization"},"image":{"@id":"https:\/\/signmycode.com\/resources\/how-to-use-jsign-to-sign-windows-executable-wrappers-and-installers#primaryimage"},"thumbnailUrl":"https:\/\/signmycode.com\/resources\/wp-content\/uploads\/2023\/12\/use-jsign-to-sign-executable-wrappers-jpg.webp","keywords":["Java implementation of Microsoft Authenticode","Sign with jSign","signing a file using JSign"],"articleSection":["Code Signing Tutorials"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/signmycode.com\/resources\/how-to-use-jsign-to-sign-windows-executable-wrappers-and-installers","url":"https:\/\/signmycode.com\/resources\/how-to-use-jsign-to-sign-windows-executable-wrappers-and-installers","name":"How to use Jsign to Sign Executable Wrappers and Installers?","isPartOf":{"@id":"https:\/\/signmycode.com\/resources\/#website"},"primaryImageOfPage":{"@id":"https:\/\/signmycode.com\/resources\/how-to-use-jsign-to-sign-windows-executable-wrappers-and-installers#primaryimage"},"image":{"@id":"https:\/\/signmycode.com\/resources\/how-to-use-jsign-to-sign-windows-executable-wrappers-and-installers#primaryimage"},"thumbnailUrl":"https:\/\/signmycode.com\/resources\/wp-content\/uploads\/2023\/12\/use-jsign-to-sign-executable-wrappers-jpg.webp","datePublished":"2023-12-19T05:17:23+00:00","dateModified":"2024-09-17T07:45:40+00:00","description":"Jsign is a Java implementation of Microsoft Authenticode that sign executables and installers with multiple tools, platforms like YubiKey, Aws CloudHSM, KeyStore, etc.","breadcrumb":{"@id":"https:\/\/signmycode.com\/resources\/how-to-use-jsign-to-sign-windows-executable-wrappers-and-installers#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/signmycode.com\/resources\/how-to-use-jsign-to-sign-windows-executable-wrappers-and-installers"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/signmycode.com\/resources\/how-to-use-jsign-to-sign-windows-executable-wrappers-and-installers#primaryimage","url":"https:\/\/signmycode.com\/resources\/wp-content\/uploads\/2023\/12\/use-jsign-to-sign-executable-wrappers-jpg.webp","contentUrl":"https:\/\/signmycode.com\/resources\/wp-content\/uploads\/2023\/12\/use-jsign-to-sign-executable-wrappers-jpg.webp","width":912,"height":440,"caption":"Sign Windows Executable File using Jsign"},{"@type":"BreadcrumbList","@id":"https:\/\/signmycode.com\/resources\/how-to-use-jsign-to-sign-windows-executable-wrappers-and-installers#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/signmycode.com\/resources\/"},{"@type":"ListItem","position":2,"name":"How to Use Jsign to Sign Windows Executable Wrappers and Installers?"}]},{"@type":"WebSite","@id":"https:\/\/signmycode.com\/resources\/#website","url":"https:\/\/signmycode.com\/resources\/","name":"SignMyCode - Resources","description":"","publisher":{"@id":"https:\/\/signmycode.com\/resources\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/signmycode.com\/resources\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/signmycode.com\/resources\/#organization","name":"SignMyCode","url":"https:\/\/signmycode.com\/resources\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/signmycode.com\/resources\/#\/schema\/logo\/image\/","url":"https:\/\/signmycode.com\/resources\/wp-content\/uploads\/2021\/11\/logo1.png","contentUrl":"https:\/\/signmycode.com\/resources\/wp-content\/uploads\/2021\/11\/logo1.png","width":135,"height":86,"caption":"SignMyCode"},"image":{"@id":"https:\/\/signmycode.com\/resources\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/Sign_My_Code"]},{"@type":"Person","@id":"https:\/\/signmycode.com\/resources\/#\/schema\/person\/2e80276fd34fd5439c04cd3cb96a389f","name":"Janki Mehta","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/74a1328bbec77f3a65123c2396050e61b60fe3831478ceb96b55e5a0fe44e370?s=96&d=blank&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/74a1328bbec77f3a65123c2396050e61b60fe3831478ceb96b55e5a0fe44e370?s=96&d=blank&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/74a1328bbec77f3a65123c2396050e61b60fe3831478ceb96b55e5a0fe44e370?s=96&d=blank&r=g","caption":"Janki Mehta"},"description":"Janki Mehta is a Cyber-Security Enthusiast who constantly updates herself with new advancements in the Web\/Cyber Security niche. Along with theoretical knowledge, she also implements her practical expertise in day-to-day tasks and helps others to protect themselves from threats.","sameAs":["http:\/\/smcresources.ssltoolsonline.com"]}]}},"_links":{"self":[{"href":"https:\/\/signmycode.com\/resources\/wp-json\/wp\/v2\/posts\/3394","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/signmycode.com\/resources\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/signmycode.com\/resources\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/signmycode.com\/resources\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/signmycode.com\/resources\/wp-json\/wp\/v2\/comments?post=3394"}],"version-history":[{"count":4,"href":"https:\/\/signmycode.com\/resources\/wp-json\/wp\/v2\/posts\/3394\/revisions"}],"predecessor-version":[{"id":4096,"href":"https:\/\/signmycode.com\/resources\/wp-json\/wp\/v2\/posts\/3394\/revisions\/4096"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/signmycode.com\/resources\/wp-json\/wp\/v2\/media\/3395"}],"wp:attachment":[{"href":"https:\/\/signmycode.com\/resources\/wp-json\/wp\/v2\/media?parent=3394"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/signmycode.com\/resources\/wp-json\/wp\/v2\/categories?post=3394"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/signmycode.com\/resources\/wp-json\/wp\/v2\/tags?post=3394"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}