{"id":1254,"date":"2023-03-01T06:33:49","date_gmt":"2023-03-01T06:33:49","guid":{"rendered":"https:\/\/signmycode.com\/resources\/?p=1254"},"modified":"2024-09-17T06:05:41","modified_gmt":"2024-09-17T06:05:41","slug":"code-signing-with-mac-codesign-utility","status":"publish","type":"post","link":"https:\/\/signmycode.com\/resources\/code-signing-with-mac-codesign-utility","title":{"rendered":"Code Signing with Mac Codesign Utility"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">To sign software, Apple provides an efficient and effortless mechanism to its users. You only need a device running macOS and it will sign the code in minimal time. Moreover, Apple provides a built-in mechanism, known as codesign utility similar to signtool in Windows, which you have to utilize for the signing procedure.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">But, make sure to only purchase an authentic <a href=\"https:\/\/signmycode.com\/apple-code-signing\">Apple Code Signing Certificate<\/a>, to prevent compatibility and other issues. So, avail yourself of your Code Signing Certificate and start with the signing process.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Prerequisites To Complete<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Before you utilize the codesign utility on macOS, the certificate must be installed on your machine. And the latest version of the terminal must be present. <\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Therefore, you must check the below points every time before starting signing applications for Apple devices.<\/strong><\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Code Signing Certificate Installation<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Double-click on the Code Signing Certificate in the browser. The system will ask you to input the password. And once it gets verified, the machine will install the certificate.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Verify the installation by going to Keychain Access Manager and viewing your certificate under the My Certificates option.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Update to latest the terminal and latest macOS version.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">The Process To Codesign Software on macOS<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">After installing the certificate and updating the system, execute the below steps to codesign software:<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong><mark style=\"background-color:rgba(0, 0, 0, 0);color:#00b373\" class=\"has-inline-color\">Step 1:<\/mark><\/strong> Open the <strong>Terminal<\/strong>.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong><mark style=\"background-color:rgba(0, 0, 0, 0);color:#00b373\" class=\"has-inline-color\">Step 2:<\/mark><\/strong> Run the following command.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>codesign -s \"Common Name\" \/path\/to\/YourAppleAppName.app<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">After executing the command, the system will digitally sign your application. Just replace the <strong>Common Name<\/strong> and <strong>\/path\/to\/YourAppleAppName.app<\/strong> in command with your information and you are ready to go.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">However, sometimes the system can show you an error \u201c<strong>CSSMERR_TP_NOT_TRUSTED<\/strong>\u201d due to the non-presence of an intermediate certificate. But, you can easily resolve it through the following method:<\/p>\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>Step 1:<\/strong> <\/mark>View the details of your <a href=\"https:\/\/signmycode.com\/code-signing-certificates\">Code Signing Certificate<\/a> and note down the Common Name of the issuer.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong><mark style=\"background-color:rgba(0, 0, 0, 0);color:#00b373\" class=\"has-inline-color\">Step 2:<\/mark><\/strong> Download the intermediate certificate and install it on the same machine.<\/p>\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>Step 3:<\/strong> <\/mark>Again, execute the codesign utility command, and this time it will get executed seamlessly.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Verify Software Authenticity Before Releasing<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Whenever you digitally sign any file on a macOS device, always verify it by running the following command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>codesign -v \/path\/to\/YourAppleAppName.app<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">If it doesn\u2019t show any error, it means that your application is signed and aligned with security standards.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Wrapping Up<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Whenever you have to sign an application on macOS, always use the codesign utility. And before using it, update the terminal and the operating system version to prevent errors. <\/p>\n\n\n\n<p class=\"wp-block-paragraph\">In addition, install the Code Signing Certificate in the Keychain Access Manager to effortlessly fetch it during the signing procedure.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>To sign software, Apple provides an efficient and effortless mechanism to its users. You only need a device running macOS and it will sign the code in minimal time. Moreover, Apple provides a built-in mechanism, known as codesign utility similar to signtool in Windows, which you have to utilize for the signing procedure. But, make&hellip; <a class=\"more-link\" href=\"https:\/\/signmycode.com\/resources\/code-signing-with-mac-codesign-utility\">Read More <span class=\"screen-reader-text\">Code Signing with Mac Codesign Utility<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":1257,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[353],"tags":[191,188],"class_list":["post-1254","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-macos-code-signing","tag-mac-codesign-tool","tag-mac-codesign-utility-2","entry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Code Sign Digital Signature in Mac OS with Mac Codesign Utility<\/title>\n<meta name=\"description\" content=\"A step-by-step procedure, that helps users to significantly sign code using the codesign utility present on macOS devices.\" \/>\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\/code-signing-with-mac-codesign-utility\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Code Sign Digital Signature in Mac OS with Mac Codesign Utility\" \/>\n<meta property=\"og:description\" content=\"A step-by-step procedure, that helps users to significantly sign code using the codesign utility present on macOS devices.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/signmycode.com\/resources\/code-signing-with-mac-codesign-utility\" \/>\n<meta property=\"og:site_name\" content=\"SignMyCode - Resources\" \/>\n<meta property=\"article:published_time\" content=\"2023-03-01T06:33:49+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-09-17T06:05:41+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/signmycode.com\/resources\/wp-content\/uploads\/2023\/03\/code-signing-with-mac-codesign-utility-tool-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\/03\/code-signing-with-mac-codesign-utility-tool-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=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/signmycode.com\\\/resources\\\/code-signing-with-mac-codesign-utility#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/signmycode.com\\\/resources\\\/code-signing-with-mac-codesign-utility\"},\"author\":{\"name\":\"Janki Mehta\",\"@id\":\"https:\\\/\\\/signmycode.com\\\/resources\\\/#\\\/schema\\\/person\\\/2e80276fd34fd5439c04cd3cb96a389f\"},\"headline\":\"Code Signing with Mac Codesign Utility\",\"datePublished\":\"2023-03-01T06:33:49+00:00\",\"dateModified\":\"2024-09-17T06:05:41+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/signmycode.com\\\/resources\\\/code-signing-with-mac-codesign-utility\"},\"wordCount\":428,\"publisher\":{\"@id\":\"https:\\\/\\\/signmycode.com\\\/resources\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/signmycode.com\\\/resources\\\/code-signing-with-mac-codesign-utility#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/signmycode.com\\\/resources\\\/wp-content\\\/uploads\\\/2023\\\/03\\\/code-signing-with-mac-codesign-utility-tool-jpg.webp\",\"keywords\":[\"mac codesign tool\",\"Mac Codesign Utility\"],\"articleSection\":[\"MacOS Code Signing\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/signmycode.com\\\/resources\\\/code-signing-with-mac-codesign-utility\",\"url\":\"https:\\\/\\\/signmycode.com\\\/resources\\\/code-signing-with-mac-codesign-utility\",\"name\":\"Code Sign Digital Signature in Mac OS with Mac Codesign Utility\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/signmycode.com\\\/resources\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/signmycode.com\\\/resources\\\/code-signing-with-mac-codesign-utility#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/signmycode.com\\\/resources\\\/code-signing-with-mac-codesign-utility#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/signmycode.com\\\/resources\\\/wp-content\\\/uploads\\\/2023\\\/03\\\/code-signing-with-mac-codesign-utility-tool-jpg.webp\",\"datePublished\":\"2023-03-01T06:33:49+00:00\",\"dateModified\":\"2024-09-17T06:05:41+00:00\",\"description\":\"A step-by-step procedure, that helps users to significantly sign code using the codesign utility present on macOS devices.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/signmycode.com\\\/resources\\\/code-signing-with-mac-codesign-utility#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/signmycode.com\\\/resources\\\/code-signing-with-mac-codesign-utility\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/signmycode.com\\\/resources\\\/code-signing-with-mac-codesign-utility#primaryimage\",\"url\":\"https:\\\/\\\/signmycode.com\\\/resources\\\/wp-content\\\/uploads\\\/2023\\\/03\\\/code-signing-with-mac-codesign-utility-tool-jpg.webp\",\"contentUrl\":\"https:\\\/\\\/signmycode.com\\\/resources\\\/wp-content\\\/uploads\\\/2023\\\/03\\\/code-signing-with-mac-codesign-utility-tool-jpg.webp\",\"width\":912,\"height\":440,\"caption\":\"Code Signing with Mac Utility Tool\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/signmycode.com\\\/resources\\\/code-signing-with-mac-codesign-utility#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/signmycode.com\\\/resources\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Code Signing with Mac Codesign Utility\"}]},{\"@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":"Code Sign Digital Signature in Mac OS with Mac Codesign Utility","description":"A step-by-step procedure, that helps users to significantly sign code using the codesign utility present on macOS devices.","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\/code-signing-with-mac-codesign-utility","og_locale":"en_US","og_type":"article","og_title":"Code Sign Digital Signature in Mac OS with Mac Codesign Utility","og_description":"A step-by-step procedure, that helps users to significantly sign code using the codesign utility present on macOS devices.","og_url":"https:\/\/signmycode.com\/resources\/code-signing-with-mac-codesign-utility","og_site_name":"SignMyCode - Resources","article_published_time":"2023-03-01T06:33:49+00:00","article_modified_time":"2024-09-17T06:05:41+00:00","og_image":[{"width":912,"height":440,"url":"https:\/\/signmycode.com\/resources\/wp-content\/uploads\/2023\/03\/code-signing-with-mac-codesign-utility-tool-jpg.webp","type":"image\/jpeg"}],"author":"Janki Mehta","twitter_card":"summary_large_image","twitter_image":"https:\/\/signmycode.com\/resources\/wp-content\/uploads\/2023\/03\/code-signing-with-mac-codesign-utility-tool-jpg.webp","twitter_creator":"@Sign_My_Code","twitter_site":"@Sign_My_Code","twitter_misc":{"Written by":"Janki Mehta","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/signmycode.com\/resources\/code-signing-with-mac-codesign-utility#article","isPartOf":{"@id":"https:\/\/signmycode.com\/resources\/code-signing-with-mac-codesign-utility"},"author":{"name":"Janki Mehta","@id":"https:\/\/signmycode.com\/resources\/#\/schema\/person\/2e80276fd34fd5439c04cd3cb96a389f"},"headline":"Code Signing with Mac Codesign Utility","datePublished":"2023-03-01T06:33:49+00:00","dateModified":"2024-09-17T06:05:41+00:00","mainEntityOfPage":{"@id":"https:\/\/signmycode.com\/resources\/code-signing-with-mac-codesign-utility"},"wordCount":428,"publisher":{"@id":"https:\/\/signmycode.com\/resources\/#organization"},"image":{"@id":"https:\/\/signmycode.com\/resources\/code-signing-with-mac-codesign-utility#primaryimage"},"thumbnailUrl":"https:\/\/signmycode.com\/resources\/wp-content\/uploads\/2023\/03\/code-signing-with-mac-codesign-utility-tool-jpg.webp","keywords":["mac codesign tool","Mac Codesign Utility"],"articleSection":["MacOS Code Signing"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/signmycode.com\/resources\/code-signing-with-mac-codesign-utility","url":"https:\/\/signmycode.com\/resources\/code-signing-with-mac-codesign-utility","name":"Code Sign Digital Signature in Mac OS with Mac Codesign Utility","isPartOf":{"@id":"https:\/\/signmycode.com\/resources\/#website"},"primaryImageOfPage":{"@id":"https:\/\/signmycode.com\/resources\/code-signing-with-mac-codesign-utility#primaryimage"},"image":{"@id":"https:\/\/signmycode.com\/resources\/code-signing-with-mac-codesign-utility#primaryimage"},"thumbnailUrl":"https:\/\/signmycode.com\/resources\/wp-content\/uploads\/2023\/03\/code-signing-with-mac-codesign-utility-tool-jpg.webp","datePublished":"2023-03-01T06:33:49+00:00","dateModified":"2024-09-17T06:05:41+00:00","description":"A step-by-step procedure, that helps users to significantly sign code using the codesign utility present on macOS devices.","breadcrumb":{"@id":"https:\/\/signmycode.com\/resources\/code-signing-with-mac-codesign-utility#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/signmycode.com\/resources\/code-signing-with-mac-codesign-utility"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/signmycode.com\/resources\/code-signing-with-mac-codesign-utility#primaryimage","url":"https:\/\/signmycode.com\/resources\/wp-content\/uploads\/2023\/03\/code-signing-with-mac-codesign-utility-tool-jpg.webp","contentUrl":"https:\/\/signmycode.com\/resources\/wp-content\/uploads\/2023\/03\/code-signing-with-mac-codesign-utility-tool-jpg.webp","width":912,"height":440,"caption":"Code Signing with Mac Utility Tool"},{"@type":"BreadcrumbList","@id":"https:\/\/signmycode.com\/resources\/code-signing-with-mac-codesign-utility#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/signmycode.com\/resources\/"},{"@type":"ListItem","position":2,"name":"Code Signing with Mac Codesign Utility"}]},{"@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\/1254","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=1254"}],"version-history":[{"count":9,"href":"https:\/\/signmycode.com\/resources\/wp-json\/wp\/v2\/posts\/1254\/revisions"}],"predecessor-version":[{"id":4047,"href":"https:\/\/signmycode.com\/resources\/wp-json\/wp\/v2\/posts\/1254\/revisions\/4047"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/signmycode.com\/resources\/wp-json\/wp\/v2\/media\/1257"}],"wp:attachment":[{"href":"https:\/\/signmycode.com\/resources\/wp-json\/wp\/v2\/media?parent=1254"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/signmycode.com\/resources\/wp-json\/wp\/v2\/categories?post=1254"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/signmycode.com\/resources\/wp-json\/wp\/v2\/tags?post=1254"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}