{"id":4281,"date":"2025-03-18T07:11:11","date_gmt":"2025-03-18T07:11:11","guid":{"rendered":"https:\/\/signmycode.com\/resources\/?p=4281"},"modified":"2025-03-18T07:11:13","modified_gmt":"2025-03-18T07:11:13","slug":"how-to-convert-a-pfx-certificate-to-jks-p12-crt","status":"publish","type":"post","link":"https:\/\/signmycode.com\/resources\/how-to-convert-a-pfx-certificate-to-jks-p12-crt","title":{"rendered":"How to Convert a PFX Certificate to JKS, P12, CRT?"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">Personal Information Exchange (.pfx) Files are used for <a href=\"https:\/\/signmycode.com\/\">code signing<\/a> an application. It is a password-protected file certificate that can store multiple cryptographic objects in a single file. <\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong><em>Starting in June 2023, Generating a PFX for a code signing certificate is no longer possible. The new industry requirements from the CA\/B Forum require\u00a0code signing certificates to be issued in .crt format and loaded inside a <a href=\"https:\/\/signmycode.com\/blog\/what-is-a-hardware-security-module-role-of-hsms-for-digital-signing\">hardware USB token<\/a> or <a href=\"https:\/\/signmycode.com\/blog\/what-is-a-cloud-hardware-security-module-right-cloud-hsm-for-code-signing\">Cloud HSM<\/a>.<\/em><\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Converting PFX certificates to other formats such as JKS (Java KeyStore), P12 (PKCS 12), and CRT (Certificate) involves using tools like OpenSSL and keytool. <strong>The conversion steps are explained in detail below<\/strong>:<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Converting PFX to JKS<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Use the <strong><em>\u201ckeytool\u201d<\/em><\/strong> command provided by Java. Ensure Java is installed and the <strong><em>\u201ckeytool\u201d<\/em><\/strong> is accessible from the command line.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Run the below command to extract the certificates and keys from the .pfx file.<\/p>\n\n\n\n<ol class=\"wp-block-list\"><\/ol>\n\n\n\n<pre class=\"wp-block-code\"><code><em>openssl pkcs12 -in yourfile.pfx -out temp.pem -nodes<\/em><\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Run below two lines as one command in key tool to create a trust certificate keystore<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><em>keytool -importkeystore -srckeystore yourfile.pfx -srcstoretype pkcs12 -destkeystore yourkeystore.jks -deststoretype jks<\/em><\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">You will be prompted to enter passwords for the source keystore and the destination keystore.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Converting PFX to P12 (PKCS 12)<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">The process of converting PFX to P12 is quite straightforward because PFX is essentially the same as PKCS 12 format. <strong>You can rename the file or convert it using OpenSSL.<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Rename:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><em>mv yourfile.pfx yourfile.p12<\/em><\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Convert:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><em>openssl pkcs12 -in yourfile.pfx -out yourfile.p12 -nodes\u201d<\/em><\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Converting PFX to CRT<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">The following prerequisites will be required to convert a PFX file to CRT.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Make sure OpenSSL is installed on your device.<\/li>\n\n\n\n<li>The PFX file you want to convert.<\/li>\n\n\n\n<li>A command-line interface (CLI) or terminal.<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">Open the command prompt and right-click on it to choose &#8220;<strong>Run as Administrator<\/strong>&#8220;<\/p>\n\n\n\n<ol class=\"wp-block-list\"><\/ol>\n\n\n\n<p class=\"wp-block-paragraph\">In the Command Prompt, change the directory to the OpenSSL bin folder:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><em>cd \"C:\\Program Files\\OpenSSL-Win64\\bin\"<\/em><\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Make sure that the Command Prompt path changes to:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><em>C:\\Program Files\\OpenSSL-Win64\\bin><\/em><\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Then, you&#8217;ll need to extract the private key from the PFX file. Run the following command in your CLI or terminal:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><em>openssl pkcs12 -in yourfile.pfx -nocerts -out certificate.key<\/em><\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Enter the password for the PFX file when prompted. Then, enter a new password for the key file twice. If done correctly, this process will save the private key as <strong><em>certificate.key<\/em><\/strong> without any error messages.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Next, you need to extract the public certificate from the PFX file. Use the following command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><em>openssl pkcs12 -in yourfile.pfx -out certificate.cer -nodes<\/em><\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Enter the PFX password again when prompted. If successful, this will save the certificate as the<strong><em> certificate.cer<\/em><\/strong><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Personal Information Exchange (.pfx) Files are used for code signing an application. It is a password-protected file certificate that can store multiple cryptographic objects in a single file. Starting in June 2023, Generating a PFX for a code signing certificate is no longer possible. The new industry requirements from the CA\/B Forum require\u00a0code signing certificates&hellip; <a class=\"more-link\" href=\"https:\/\/signmycode.com\/resources\/how-to-convert-a-pfx-certificate-to-jks-p12-crt\">Read More <span class=\"screen-reader-text\">How to Convert a PFX Certificate to JKS, P12, CRT?<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":4285,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2],"tags":[592],"class_list":["post-4281","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-code-signing-tutorials","tag-convert-pfx-certificate","entry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Convert PFX Certificate to JKS, P12, CRT?<\/title>\n<meta name=\"description\" content=\"Learn here how to convert PFX Certificate to other formats like JKS, P12 and CRT with simple commands and easy steps.\" \/>\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-convert-a-pfx-certificate-to-jks-p12-crt\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Convert PFX Certificate to JKS, P12, CRT?\" \/>\n<meta property=\"og:description\" content=\"Learn here how to convert PFX Certificate to other formats like JKS, P12 and CRT with simple commands and easy steps.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/signmycode.com\/resources\/how-to-convert-a-pfx-certificate-to-jks-p12-crt\" \/>\n<meta property=\"og:site_name\" content=\"SignMyCode - Resources\" \/>\n<meta property=\"article:published_time\" content=\"2025-03-18T07:11:11+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-03-18T07:11:13+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/signmycode.com\/resources\/wp-content\/uploads\/2025\/03\/convert-pfx-to-jks-p12-crt.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"912\" \/>\n\t<meta property=\"og:image:height\" content=\"453\" \/>\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=\"2 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-convert-a-pfx-certificate-to-jks-p12-crt#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/signmycode.com\\\/resources\\\/how-to-convert-a-pfx-certificate-to-jks-p12-crt\"},\"author\":{\"name\":\"Janki Mehta\",\"@id\":\"https:\\\/\\\/signmycode.com\\\/resources\\\/#\\\/schema\\\/person\\\/2e80276fd34fd5439c04cd3cb96a389f\"},\"headline\":\"How to Convert a PFX Certificate to JKS, P12, CRT?\",\"datePublished\":\"2025-03-18T07:11:11+00:00\",\"dateModified\":\"2025-03-18T07:11:13+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/signmycode.com\\\/resources\\\/how-to-convert-a-pfx-certificate-to-jks-p12-crt\"},\"wordCount\":382,\"publisher\":{\"@id\":\"https:\\\/\\\/signmycode.com\\\/resources\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/signmycode.com\\\/resources\\\/how-to-convert-a-pfx-certificate-to-jks-p12-crt#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/signmycode.com\\\/resources\\\/wp-content\\\/uploads\\\/2025\\\/03\\\/convert-pfx-to-jks-p12-crt.webp\",\"keywords\":[\"Convert PFX Certificate\"],\"articleSection\":[\"Code Signing Tutorials\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/signmycode.com\\\/resources\\\/how-to-convert-a-pfx-certificate-to-jks-p12-crt\",\"url\":\"https:\\\/\\\/signmycode.com\\\/resources\\\/how-to-convert-a-pfx-certificate-to-jks-p12-crt\",\"name\":\"How to Convert PFX Certificate to JKS, P12, CRT?\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/signmycode.com\\\/resources\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/signmycode.com\\\/resources\\\/how-to-convert-a-pfx-certificate-to-jks-p12-crt#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/signmycode.com\\\/resources\\\/how-to-convert-a-pfx-certificate-to-jks-p12-crt#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/signmycode.com\\\/resources\\\/wp-content\\\/uploads\\\/2025\\\/03\\\/convert-pfx-to-jks-p12-crt.webp\",\"datePublished\":\"2025-03-18T07:11:11+00:00\",\"dateModified\":\"2025-03-18T07:11:13+00:00\",\"description\":\"Learn here how to convert PFX Certificate to other formats like JKS, P12 and CRT with simple commands and easy steps.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/signmycode.com\\\/resources\\\/how-to-convert-a-pfx-certificate-to-jks-p12-crt#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/signmycode.com\\\/resources\\\/how-to-convert-a-pfx-certificate-to-jks-p12-crt\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/signmycode.com\\\/resources\\\/how-to-convert-a-pfx-certificate-to-jks-p12-crt#primaryimage\",\"url\":\"https:\\\/\\\/signmycode.com\\\/resources\\\/wp-content\\\/uploads\\\/2025\\\/03\\\/convert-pfx-to-jks-p12-crt.webp\",\"contentUrl\":\"https:\\\/\\\/signmycode.com\\\/resources\\\/wp-content\\\/uploads\\\/2025\\\/03\\\/convert-pfx-to-jks-p12-crt.webp\",\"width\":912,\"height\":453,\"caption\":\"Converting PFX to Other Format\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/signmycode.com\\\/resources\\\/how-to-convert-a-pfx-certificate-to-jks-p12-crt#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/signmycode.com\\\/resources\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Convert a PFX Certificate to JKS, P12, CRT?\"}]},{\"@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 Convert PFX Certificate to JKS, P12, CRT?","description":"Learn here how to convert PFX Certificate to other formats like JKS, P12 and CRT with simple commands and easy steps.","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-convert-a-pfx-certificate-to-jks-p12-crt","og_locale":"en_US","og_type":"article","og_title":"How to Convert PFX Certificate to JKS, P12, CRT?","og_description":"Learn here how to convert PFX Certificate to other formats like JKS, P12 and CRT with simple commands and easy steps.","og_url":"https:\/\/signmycode.com\/resources\/how-to-convert-a-pfx-certificate-to-jks-p12-crt","og_site_name":"SignMyCode - Resources","article_published_time":"2025-03-18T07:11:11+00:00","article_modified_time":"2025-03-18T07:11:13+00:00","og_image":[{"width":912,"height":453,"url":"https:\/\/signmycode.com\/resources\/wp-content\/uploads\/2025\/03\/convert-pfx-to-jks-p12-crt.webp","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":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/signmycode.com\/resources\/how-to-convert-a-pfx-certificate-to-jks-p12-crt#article","isPartOf":{"@id":"https:\/\/signmycode.com\/resources\/how-to-convert-a-pfx-certificate-to-jks-p12-crt"},"author":{"name":"Janki Mehta","@id":"https:\/\/signmycode.com\/resources\/#\/schema\/person\/2e80276fd34fd5439c04cd3cb96a389f"},"headline":"How to Convert a PFX Certificate to JKS, P12, CRT?","datePublished":"2025-03-18T07:11:11+00:00","dateModified":"2025-03-18T07:11:13+00:00","mainEntityOfPage":{"@id":"https:\/\/signmycode.com\/resources\/how-to-convert-a-pfx-certificate-to-jks-p12-crt"},"wordCount":382,"publisher":{"@id":"https:\/\/signmycode.com\/resources\/#organization"},"image":{"@id":"https:\/\/signmycode.com\/resources\/how-to-convert-a-pfx-certificate-to-jks-p12-crt#primaryimage"},"thumbnailUrl":"https:\/\/signmycode.com\/resources\/wp-content\/uploads\/2025\/03\/convert-pfx-to-jks-p12-crt.webp","keywords":["Convert PFX Certificate"],"articleSection":["Code Signing Tutorials"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/signmycode.com\/resources\/how-to-convert-a-pfx-certificate-to-jks-p12-crt","url":"https:\/\/signmycode.com\/resources\/how-to-convert-a-pfx-certificate-to-jks-p12-crt","name":"How to Convert PFX Certificate to JKS, P12, CRT?","isPartOf":{"@id":"https:\/\/signmycode.com\/resources\/#website"},"primaryImageOfPage":{"@id":"https:\/\/signmycode.com\/resources\/how-to-convert-a-pfx-certificate-to-jks-p12-crt#primaryimage"},"image":{"@id":"https:\/\/signmycode.com\/resources\/how-to-convert-a-pfx-certificate-to-jks-p12-crt#primaryimage"},"thumbnailUrl":"https:\/\/signmycode.com\/resources\/wp-content\/uploads\/2025\/03\/convert-pfx-to-jks-p12-crt.webp","datePublished":"2025-03-18T07:11:11+00:00","dateModified":"2025-03-18T07:11:13+00:00","description":"Learn here how to convert PFX Certificate to other formats like JKS, P12 and CRT with simple commands and easy steps.","breadcrumb":{"@id":"https:\/\/signmycode.com\/resources\/how-to-convert-a-pfx-certificate-to-jks-p12-crt#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/signmycode.com\/resources\/how-to-convert-a-pfx-certificate-to-jks-p12-crt"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/signmycode.com\/resources\/how-to-convert-a-pfx-certificate-to-jks-p12-crt#primaryimage","url":"https:\/\/signmycode.com\/resources\/wp-content\/uploads\/2025\/03\/convert-pfx-to-jks-p12-crt.webp","contentUrl":"https:\/\/signmycode.com\/resources\/wp-content\/uploads\/2025\/03\/convert-pfx-to-jks-p12-crt.webp","width":912,"height":453,"caption":"Converting PFX to Other Format"},{"@type":"BreadcrumbList","@id":"https:\/\/signmycode.com\/resources\/how-to-convert-a-pfx-certificate-to-jks-p12-crt#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/signmycode.com\/resources\/"},{"@type":"ListItem","position":2,"name":"How to Convert a PFX Certificate to JKS, P12, CRT?"}]},{"@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\/4281","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=4281"}],"version-history":[{"count":2,"href":"https:\/\/signmycode.com\/resources\/wp-json\/wp\/v2\/posts\/4281\/revisions"}],"predecessor-version":[{"id":4286,"href":"https:\/\/signmycode.com\/resources\/wp-json\/wp\/v2\/posts\/4281\/revisions\/4286"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/signmycode.com\/resources\/wp-json\/wp\/v2\/media\/4285"}],"wp:attachment":[{"href":"https:\/\/signmycode.com\/resources\/wp-json\/wp\/v2\/media?parent=4281"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/signmycode.com\/resources\/wp-json\/wp\/v2\/categories?post=4281"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/signmycode.com\/resources\/wp-json\/wp\/v2\/tags?post=4281"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}