{"id":917,"date":"2022-12-23T05:53:38","date_gmt":"2022-12-23T05:53:38","guid":{"rendered":"https:\/\/signmycode.com\/resources\/?p=917"},"modified":"2024-09-17T04:44:59","modified_gmt":"2024-09-17T04:44:59","slug":"how-do-i-sign-files-on-mac-osx","status":"publish","type":"post","link":"https:\/\/signmycode.com\/resources\/how-do-i-sign-files-on-mac-osx","title":{"rendered":"Code Signing in Mac OSX \u2013 Sign Your File in Minutes"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">You will find it utterly contrasting if you compare Apple&#8217;s environment with other operating system ecosystems. The same is the case with its Code Signing procedure.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Software publishers must follow a different command set to utilize a Code Signing Certificate on Mac OSX. Moreover, they must use an in-build Terminal instead of a Command Prompt. To understand the code signing process on Mac OSX, let\u2019s start with signing files.<\/p>\n\n\n\n<div class=\"wp-block-columns has-green-background-color has-background is-layout-flex wp-container-core-columns-is-layout-2367b857 wp-block-columns-is-layout-flex\" style=\"padding-top:35px;padding-bottom:30px\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<p class=\"has-text-align-center has-large-font-size wp-block-paragraph\"><strong>iOS\/Mac Code Signing Certificate<\/strong><\/p>\n\n\n\n<p class=\"has-text-align-center wp-block-paragraph\">Code signing your iOS and iPadOS apps ensures that the code has not been modified since it was signed with a digital signature.<\/p>\n\n\n\n<div class=\"wp-block-buttons alignwide is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button aligncenter\"><a class=\"wp-block-button__link wp-element-button\" href=\"https:\/\/signmycode.com\/individual-code-signing\">Buy Apple Code Signing Cert at $215.99\/yr<\/a><\/div>\n<\/div>\n<\/div>\n<\/div>\n\n\n\n<h2 class=\"wp-block-heading\">The Necessity of Code Signing for iOS-based applications<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Code Signing helps iOS app developers and publishers:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>To tamper-proof the code and tighten the software security<\/li>\n\n\n\n<li>To align with Apple\u2019s policies to list applications on the online store<\/li>\n\n\n\n<li>To tell the user that software is coming from a legitimate entity<\/li>\n\n\n\n<li>To organically build a reputation across Apple&#8217;s digital environment<\/li>\n\n\n\n<li>To ensure a zero warning and seamless experience to end-users<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Process To Use Code Signing Certificate in Mac OSX<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\"><mark style=\"background-color:rgba(0, 0, 0, 0);color:#00b373\" class=\"has-inline-color\"><strong>Note: <\/strong>Due to the <a href=\"https:\/\/signmycode.com\/blog\/ca-b-forum-code-signing-baseline-requirements-v2-8\">New CA\/B Guideline<\/a>, the Code Signing Certificate is now not exported; private keys must be marked as non-exportable!<\/mark><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">To initiate the process of code signing an executable in macOS, you must download the .pfx from the local hard drive. <strong>To import the certificate, you can use the following procedure:<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Step 1:<\/strong> <strong>Go to Keychain Access<\/strong> and select the <strong>File <\/strong>option from the menu.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Step 2:<\/strong> Click on <strong>import <\/strong>items to choose the required <strong>.pfx file<\/strong>.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Step 3:<\/strong> <strong>Select the location<\/strong> on the system for the certificate file and fill out the details as prompted.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Step 4:<\/strong> Your Code Signing Certificate file in .pfx format will get imported to your local hard disk.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Once you have the digital certificate, the next step is to open the terminal and execute commands according to your requirements.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">To sign an executable file<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">You can <a href=\"https:\/\/signmycode.com\/blog\/code-signing-certificate-security-for-executables\">sign your executable file<\/a> on macOS by executing the below command. You must replace the identity \u00e0 common name and code-path \u00e0 path of the executable file. <\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>codesign -s &lt;identity&gt; &lt;code-path&gt;<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">While using the command, you will not receive any feedback.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">To Sign an executable and get feedback<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">To get the feedback, you must pass the <strong>-v<\/strong> parameter before defining the path to the file.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>codesign -s &lt;identity&gt; -v &lt;code-path&gt;<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">To Sign a Nested Code or Framework<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">You can sign a particular framework version by executing the following command. To run it, you must define the version number and the framework&#8217;s name.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>codesign -s &lt;identity&gt; --bundle-version=VersonB MyCustomFramework.framework<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">To Sign Disk Image<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">The command to sign a disk image is similar to signing an executable file. The path to the executable file gets replaced with the path to the disk image file.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>codesign -s &lt;identity&gt; &lt;disk-image&gt;<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Code Signing Verification on MacOS<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Verifying the sign is a necessary and crucial process. It aids in confirming that the file, disk image, or framework gets successfully signed.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">To confirm the signature on Mac OSX, open the terminal and execute the below command. You will not receive any response if every aspect is up to the mark.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>codesign -v &lt;code-path&gt;<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion of How Do I Sign Files on Mac OSX<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\"><span style=\"box-sizing: border-box; margin: 0px; padding: 0px;\">You must use the Terminal utility to utilize the&nbsp;Code Signing Certificate&nbsp;on a Mac OSX device<\/span>. It aids iOS developers and publishers in integrating their sign with executable files, disk images, and frameworks. However, you must import the certificate in PFX format to the local hard disk before executing any command.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Furthermore, it also provides sign-verification functionality. By running the verification command, you can confirm whether your file has a valid sign.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>You will find it utterly contrasting if you compare Apple&#8217;s environment with other operating system ecosystems. The same is the case with its Code Signing procedure. Software publishers must follow a different command set to utilize a Code Signing Certificate on Mac OSX. Moreover, they must use an in-build Terminal instead of a Command Prompt.&hellip; <a class=\"more-link\" href=\"https:\/\/signmycode.com\/resources\/how-do-i-sign-files-on-mac-osx\">Read More <span class=\"screen-reader-text\">Code Signing in Mac OSX \u2013 Sign Your File in Minutes<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":923,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[353],"tags":[175,176],"class_list":["post-917","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-macos-code-signing","tag-mac-osx-code-signing","tag-sign-mac-os-file","entry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How Do I Sign Files on Mac OSX using Code Signing in Minutes?<\/title>\n<meta name=\"description\" content=\"Sign Files on Mac OSX: A brief instructional guide aiding the iOS app developers and publishers to sign executable files on Mac OSX.\" \/>\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-do-i-sign-files-on-mac-osx\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How Do I Sign Files on Mac OSX using Code Signing in Minutes?\" \/>\n<meta property=\"og:description\" content=\"Sign Files on Mac OSX: A brief instructional guide aiding the iOS app developers and publishers to sign executable files on Mac OSX.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/signmycode.com\/resources\/how-do-i-sign-files-on-mac-osx\" \/>\n<meta property=\"og:site_name\" content=\"SignMyCode - Resources\" \/>\n<meta property=\"article:published_time\" content=\"2022-12-23T05:53:38+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-09-17T04:44:59+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/signmycode.com\/resources\/wp-content\/uploads\/2022\/12\/how-do-i-sign-files-on-mac-osx.jpg\" \/>\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: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=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/signmycode.com\\\/resources\\\/how-do-i-sign-files-on-mac-osx#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/signmycode.com\\\/resources\\\/how-do-i-sign-files-on-mac-osx\"},\"author\":{\"name\":\"Janki Mehta\",\"@id\":\"https:\\\/\\\/signmycode.com\\\/resources\\\/#\\\/schema\\\/person\\\/2e80276fd34fd5439c04cd3cb96a389f\"},\"headline\":\"Code Signing in Mac OSX \u2013 Sign Your File in Minutes\",\"datePublished\":\"2022-12-23T05:53:38+00:00\",\"dateModified\":\"2024-09-17T04:44:59+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/signmycode.com\\\/resources\\\/how-do-i-sign-files-on-mac-osx\"},\"wordCount\":607,\"publisher\":{\"@id\":\"https:\\\/\\\/signmycode.com\\\/resources\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/signmycode.com\\\/resources\\\/how-do-i-sign-files-on-mac-osx#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/signmycode.com\\\/resources\\\/wp-content\\\/uploads\\\/2022\\\/12\\\/how-do-i-sign-files-on-mac-osx.jpg\",\"keywords\":[\"Mac OSX Code Signing\",\"Sign Mac OS File\"],\"articleSection\":[\"MacOS Code Signing\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/signmycode.com\\\/resources\\\/how-do-i-sign-files-on-mac-osx\",\"url\":\"https:\\\/\\\/signmycode.com\\\/resources\\\/how-do-i-sign-files-on-mac-osx\",\"name\":\"How Do I Sign Files on Mac OSX using Code Signing in Minutes?\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/signmycode.com\\\/resources\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/signmycode.com\\\/resources\\\/how-do-i-sign-files-on-mac-osx#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/signmycode.com\\\/resources\\\/how-do-i-sign-files-on-mac-osx#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/signmycode.com\\\/resources\\\/wp-content\\\/uploads\\\/2022\\\/12\\\/how-do-i-sign-files-on-mac-osx.jpg\",\"datePublished\":\"2022-12-23T05:53:38+00:00\",\"dateModified\":\"2024-09-17T04:44:59+00:00\",\"description\":\"Sign Files on Mac OSX: A brief instructional guide aiding the iOS app developers and publishers to sign executable files on Mac OSX.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/signmycode.com\\\/resources\\\/how-do-i-sign-files-on-mac-osx#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/signmycode.com\\\/resources\\\/how-do-i-sign-files-on-mac-osx\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/signmycode.com\\\/resources\\\/how-do-i-sign-files-on-mac-osx#primaryimage\",\"url\":\"https:\\\/\\\/signmycode.com\\\/resources\\\/wp-content\\\/uploads\\\/2022\\\/12\\\/how-do-i-sign-files-on-mac-osx.jpg\",\"contentUrl\":\"https:\\\/\\\/signmycode.com\\\/resources\\\/wp-content\\\/uploads\\\/2022\\\/12\\\/how-do-i-sign-files-on-mac-osx.jpg\",\"width\":912,\"height\":440,\"caption\":\"How Do I Sign Files on Mac OSX\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/signmycode.com\\\/resources\\\/how-do-i-sign-files-on-mac-osx#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/signmycode.com\\\/resources\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Code Signing in Mac OSX \u2013 Sign Your File in Minutes\"}]},{\"@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 Do I Sign Files on Mac OSX using Code Signing in Minutes?","description":"Sign Files on Mac OSX: A brief instructional guide aiding the iOS app developers and publishers to sign executable files on Mac OSX.","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-do-i-sign-files-on-mac-osx","og_locale":"en_US","og_type":"article","og_title":"How Do I Sign Files on Mac OSX using Code Signing in Minutes?","og_description":"Sign Files on Mac OSX: A brief instructional guide aiding the iOS app developers and publishers to sign executable files on Mac OSX.","og_url":"https:\/\/signmycode.com\/resources\/how-do-i-sign-files-on-mac-osx","og_site_name":"SignMyCode - Resources","article_published_time":"2022-12-23T05:53:38+00:00","article_modified_time":"2024-09-17T04:44:59+00:00","og_image":[{"width":912,"height":440,"url":"https:\/\/signmycode.com\/resources\/wp-content\/uploads\/2022\/12\/how-do-i-sign-files-on-mac-osx.jpg","type":"image\/jpeg"}],"author":"Janki Mehta","twitter_card":"summary_large_image","twitter_creator":"@Sign_My_Code","twitter_site":"@Sign_My_Code","twitter_misc":{"Written by":"Janki Mehta","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/signmycode.com\/resources\/how-do-i-sign-files-on-mac-osx#article","isPartOf":{"@id":"https:\/\/signmycode.com\/resources\/how-do-i-sign-files-on-mac-osx"},"author":{"name":"Janki Mehta","@id":"https:\/\/signmycode.com\/resources\/#\/schema\/person\/2e80276fd34fd5439c04cd3cb96a389f"},"headline":"Code Signing in Mac OSX \u2013 Sign Your File in Minutes","datePublished":"2022-12-23T05:53:38+00:00","dateModified":"2024-09-17T04:44:59+00:00","mainEntityOfPage":{"@id":"https:\/\/signmycode.com\/resources\/how-do-i-sign-files-on-mac-osx"},"wordCount":607,"publisher":{"@id":"https:\/\/signmycode.com\/resources\/#organization"},"image":{"@id":"https:\/\/signmycode.com\/resources\/how-do-i-sign-files-on-mac-osx#primaryimage"},"thumbnailUrl":"https:\/\/signmycode.com\/resources\/wp-content\/uploads\/2022\/12\/how-do-i-sign-files-on-mac-osx.jpg","keywords":["Mac OSX Code Signing","Sign Mac OS File"],"articleSection":["MacOS Code Signing"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/signmycode.com\/resources\/how-do-i-sign-files-on-mac-osx","url":"https:\/\/signmycode.com\/resources\/how-do-i-sign-files-on-mac-osx","name":"How Do I Sign Files on Mac OSX using Code Signing in Minutes?","isPartOf":{"@id":"https:\/\/signmycode.com\/resources\/#website"},"primaryImageOfPage":{"@id":"https:\/\/signmycode.com\/resources\/how-do-i-sign-files-on-mac-osx#primaryimage"},"image":{"@id":"https:\/\/signmycode.com\/resources\/how-do-i-sign-files-on-mac-osx#primaryimage"},"thumbnailUrl":"https:\/\/signmycode.com\/resources\/wp-content\/uploads\/2022\/12\/how-do-i-sign-files-on-mac-osx.jpg","datePublished":"2022-12-23T05:53:38+00:00","dateModified":"2024-09-17T04:44:59+00:00","description":"Sign Files on Mac OSX: A brief instructional guide aiding the iOS app developers and publishers to sign executable files on Mac OSX.","breadcrumb":{"@id":"https:\/\/signmycode.com\/resources\/how-do-i-sign-files-on-mac-osx#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/signmycode.com\/resources\/how-do-i-sign-files-on-mac-osx"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/signmycode.com\/resources\/how-do-i-sign-files-on-mac-osx#primaryimage","url":"https:\/\/signmycode.com\/resources\/wp-content\/uploads\/2022\/12\/how-do-i-sign-files-on-mac-osx.jpg","contentUrl":"https:\/\/signmycode.com\/resources\/wp-content\/uploads\/2022\/12\/how-do-i-sign-files-on-mac-osx.jpg","width":912,"height":440,"caption":"How Do I Sign Files on Mac OSX"},{"@type":"BreadcrumbList","@id":"https:\/\/signmycode.com\/resources\/how-do-i-sign-files-on-mac-osx#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/signmycode.com\/resources\/"},{"@type":"ListItem","position":2,"name":"Code Signing in Mac OSX \u2013 Sign Your File in Minutes"}]},{"@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\/917","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=917"}],"version-history":[{"count":11,"href":"https:\/\/signmycode.com\/resources\/wp-json\/wp\/v2\/posts\/917\/revisions"}],"predecessor-version":[{"id":4016,"href":"https:\/\/signmycode.com\/resources\/wp-json\/wp\/v2\/posts\/917\/revisions\/4016"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/signmycode.com\/resources\/wp-json\/wp\/v2\/media\/923"}],"wp:attachment":[{"href":"https:\/\/signmycode.com\/resources\/wp-json\/wp\/v2\/media?parent=917"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/signmycode.com\/resources\/wp-json\/wp\/v2\/categories?post=917"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/signmycode.com\/resources\/wp-json\/wp\/v2\/tags?post=917"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}