{"id":53,"date":"2024-03-23T07:09:29","date_gmt":"2024-03-23T07:09:29","guid":{"rendered":"https:\/\/psahni.com\/?p=53"},"modified":"2024-03-28T11:11:42","modified_gmt":"2024-03-28T11:11:42","slug":"aws-hsm-upload-private-key","status":"publish","type":"post","link":"https:\/\/psahni.com\/?p=53","title":{"rendered":"AWS HSM &#8211; Upload Private Key"},"content":{"rendered":"\n<p>AWS CloudHSM lets you manage and access your keys on FIPS-validated hardware, protected with customer-owned, single-tenant HSM instances that run in your own Virtual Private Cloud (VPC).<\/p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"Describe-HSM-cluster:\">Describe HSM cluster:<\/h4>\n\n\n\n<p><code>aws cloudhsmv2 describe-clusters --region=eu-east-1<\/code><\/p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"Generate-private-key-to-initialize-HSM-cluster:\">Generate private key to initialize HSM cluster:<\/h4>\n\n\n\n<p><code>openssl genrsa -aes256 -out customerCA.key 2048<\/code><\/p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"Generate-public-certificate-to-initialize-HSM-cluster:\">Generate public certificate to initialize HSM cluster:<\/h4>\n\n\n\n<p><code>openssl req -new -x509 -days 3652 -key customerCA.key -out customerCA.crt<\/code><\/p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"Generate-HSM-Cluster-certificate-file-to-initialize-HSM-cluster:\">Generate HSM Cluster certificate file to initialize HSM cluster:<\/h4>\n\n\n\n<h6 class=\"wp-block-heading\" id=\"Note:-CSR-file-will-provide-by-cloud-HSM\">Note: CSR file will be provided by cloud HSM<\/h6>\n\n\n\n<p><code>openssl x509 -req -days 3652 -in cluster-xxx_ClusterCsr.csr \\ -CA customerCA.crt \\ -CAkey customerCA.key \\ -CAcreateserial \\ -out cluster-xxx_CustomerHsmCertificate.crt<\/code><\/p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"Initializing-the-HSM-cluster:\">Initializing the HSM cluster:<\/h4>\n\n\n\n<p><code>aws cloudhsmv2 initialize-cluster --region eu-east-1 --cluster-id cluster-hotdxipqgvu \\ --signed-cert file:\/\/cluster-hotdxipqgvu_CustomerHsmCertificate.crt \\ --trust-anchor file:\/\/customerCA.crt<\/code><\/p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"CMU-(Cloud-HSM-Management-Util)\">CMU (Cloud HSM Management Util)<\/h4>\n\n\n\n<h6 class=\"wp-block-heading\" id=\"To-connect-Cluster-and-get-access-to-CMU:\">To connect Cluster and get access to CMU:<\/h6>\n\n\n\n<p><code>sudo \/opt\/cloudhsm\/bin\/configure --cmu xx.xx.xx.xx \/opt\/cloudhsm\/bin\/cloudhsm_mgmt_util \/opt\/cloudhsm\/etc\/cloudhsm_mgmt_util.cfg<\/code><\/p>\n\n\n\n<h6 class=\"wp-block-heading\" id=\"Login-to-HSM-cluster-as-an-admin-and-create-and-login-as-a-crypto-user-(CU):\">Login to the HSM cluster as an admin and create and log in as a crypto user (CU):<\/h6>\n\n\n\n<p><code>loginHSM CO admin -hpswd createUser CU platform changeit loginHSM CU platform -hpswd password : <\/code>your_password<\/p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"KMU-(Key-Management-Util)\">KMU (Key Management Util)<\/h4>\n\n\n\n<h6 class=\"wp-block-heading\" id=\"Connect-to-HSM-Cluster-and-get-access-to-KMU:\">Connect to HSM Cluster and get access to KMU:<\/h6>\n\n\n\n<p><code>sudo \/opt\/cloudhsm\/bin\/configure -a <code>xx.xx.xx.xx<\/code> sudo \/opt\/cloudhsm\/bin\/key_mgmt_util<\/code><\/p>\n\n\n\n<h6 class=\"wp-block-heading\" id=\"Login-as-a-CU-user-and-Generate-symmetric-wrapper-key-handle-and-import-private-key-into-HSM-cluster:\">Login as a CU user and Generate symmetric wrapper key handle and import private key into HSM cluster:<\/h6>\n\n\n\n<p><code>loginHSM -u CU -s platform -p your_password genSymKey -t 31 -s 16 -sess -l import-wrapping-key importPrivateKey -f MY_HSM_01.key -l my_bcs_hsm -w <\/code>123<\/p>\n\n\n\n<p>Here 123 is the key handle which will generated by SymKey (2 point), when ever<\/p>\n\n\n\n<h5 class=\"wp-block-heading\" id=\"When-you-are-unable-to-connect-to-either-CMU-or-KMU-then-follow-below-steps\">When you are unable to connect to either CMU or KMU then follow below steps<\/h5>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"To-restart-the-cloud-HSM-client:\">To restart the cloud HSM client:<\/h4>\n\n\n\n<p><code>sudo systemctl is-active cloudhsm-client sudo systemctl stop cloudhsm-client sudo \/opt\/cloudhsm\/bin\/configure -a <code><code>xx.xx.xx.xx<\/code><\/code> sudo systemctl start cloudhsm-client<\/code><\/p>\n\n\n\n<ol start=\"1\">\n<li>rename the cert name from p7c format to p7b format using bash (mv MY_HSM_01.p7c MY_HSM_01.p7b)<\/li>\n\n\n\n<li>convert p7b format to .crt\/.cer format using windows cert manager (certmgr.msc)<\/li>\n\n\n\n<li>export .cer file from cert manager to local folder<\/li>\n\n\n\n<li>configure .cer file into bcs-hsm-client project<\/li>\n<\/ol>\n\n\n\n<p>To upload HSM certificate:<\/p>\n\n\n\n<p><strong>Keeping HSM Private key into Local:<\/strong><\/p>\n\n\n\n<ol start=\"1\">\n<li>consume private .key file and convert into .der format and store it resources folder<\/li>\n\n\n\n<li>rename .key to .pem file format using bash<\/li>\n<\/ol>\n\n\n\n<p>openssl pkcs8 -topk8 -in MY_HSM_01.pem -out MY_HSM_01.pem -nocrypt<\/p>\n\n\n\n<p>openssl pkcs8 -topk8 -inform PEM -outform DER -in MY_HSM.pem -out MY_HSM.der -nocrypt<\/p>\n","protected":false},"excerpt":{"rendered":"<p>AWS CloudHSM lets you manage and access your keys on FIPS-validated hardware, protected with customer-owned, single-tenant HSM instances that run in your own Virtual Private Cloud (VPC). Describe HSM cluster: aws cloudhsmv2 describe-clusters &#8211;region=eu-east-1 Generate private key to initialize HSM cluster: openssl genrsa -aes256 -out customerCA.key 2048 Generate public certificate to initialize HSM cluster: openssl [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"om_disable_all_campaigns":false,"_monsterinsights_skip_tracking":false,"_uf_show_specific_survey":0,"_uf_disable_surveys":false,"footnotes":""},"categories":[1],"tags":[],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.1.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"AWS CloudHSM lets you manage and access your keys on FIPS-validated hardware, protected with customer-owned, single-tenant HSM instances that run in your own Virtual Private Cloud (VPC). Describe HSM cluster: aws cloudhsmv2 describe-clusters --region=eu-east-1 Generate private key to initialize HSM cluster: openssl genrsa -aes256 -out customerCA.key 2048 Generate public certificate to initialize HSM cluster: openssl\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"psahni.com\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/psahni.com\/?p=53\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.1.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_GB\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Pankaj Sahni -\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"AWS HSM \u2013 Upload Private Key - Pankaj Sahni\" \/>\n\t\t<meta property=\"og:description\" content=\"AWS CloudHSM lets you manage and access your keys on FIPS-validated hardware, protected with customer-owned, single-tenant HSM instances that run in your own Virtual Private Cloud (VPC). Describe HSM cluster: aws cloudhsmv2 describe-clusters --region=eu-east-1 Generate private key to initialize HSM cluster: openssl genrsa -aes256 -out customerCA.key 2048 Generate public certificate to initialize HSM cluster: openssl\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/psahni.com\/?p=53\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2024-03-23T07:09:29+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2024-03-28T11:11:42+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:title\" content=\"AWS HSM \u2013 Upload Private Key - Pankaj Sahni\" \/>\n\t\t<meta name=\"twitter:description\" content=\"AWS CloudHSM lets you manage and access your keys on FIPS-validated hardware, protected with customer-owned, single-tenant HSM instances that run in your own Virtual Private Cloud (VPC). Describe HSM cluster: aws cloudhsmv2 describe-clusters --region=eu-east-1 Generate private key to initialize HSM cluster: openssl genrsa -aes256 -out customerCA.key 2048 Generate public certificate to initialize HSM cluster: openssl\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"BlogPosting\",\"@id\":\"https:\\\/\\\/psahni.com\\\/?p=53#blogposting\",\"name\":\"AWS HSM \\u2013 Upload Private Key - Pankaj Sahni\",\"headline\":\"AWS HSM &#8211; Upload Private Key\",\"author\":{\"@id\":\"https:\\\/\\\/psahni.com\\\/?author=1#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/psahni.com\\\/#organization\"},\"datePublished\":\"2024-03-23T07:09:29+00:00\",\"dateModified\":\"2024-03-28T11:11:42+00:00\",\"inLanguage\":\"en-GB\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/psahni.com\\\/?p=53#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/psahni.com\\\/?p=53#webpage\"},\"articleSection\":\"Blog\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/psahni.com\\\/?p=53#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/psahni.com#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/psahni.com\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/psahni.com\\\/?cat=1#listItem\",\"name\":\"Blog\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/psahni.com\\\/?cat=1#listItem\",\"position\":2,\"name\":\"Blog\",\"item\":\"https:\\\/\\\/psahni.com\\\/?cat=1\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/psahni.com\\\/?p=53#listItem\",\"name\":\"AWS HSM &#8211; Upload Private Key\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/psahni.com#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/psahni.com\\\/?p=53#listItem\",\"position\":3,\"name\":\"AWS HSM &#8211; Upload Private Key\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/psahni.com\\\/?cat=1#listItem\",\"name\":\"Blog\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/psahni.com\\\/#organization\",\"name\":\"psahni.com\",\"url\":\"https:\\\/\\\/psahni.com\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/psahni.com\\\/?author=1#author\",\"url\":\"https:\\\/\\\/psahni.com\\\/?author=1\",\"name\":\"psahni.com\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/psahni.com\\\/?p=53#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/eff2190eda7f1daafcb4d352c20ae0ab?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"psahni.com\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/psahni.com\\\/?p=53#webpage\",\"url\":\"https:\\\/\\\/psahni.com\\\/?p=53\",\"name\":\"AWS HSM \\u2013 Upload Private Key - Pankaj Sahni\",\"description\":\"AWS CloudHSM lets you manage and access your keys on FIPS-validated hardware, protected with customer-owned, single-tenant HSM instances that run in your own Virtual Private Cloud (VPC). Describe HSM cluster: aws cloudhsmv2 describe-clusters --region=eu-east-1 Generate private key to initialize HSM cluster: openssl genrsa -aes256 -out customerCA.key 2048 Generate public certificate to initialize HSM cluster: openssl\",\"inLanguage\":\"en-GB\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/psahni.com\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/psahni.com\\\/?p=53#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/psahni.com\\\/?author=1#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/psahni.com\\\/?author=1#author\"},\"datePublished\":\"2024-03-23T07:09:29+00:00\",\"dateModified\":\"2024-03-28T11:11:42+00:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/psahni.com\\\/#website\",\"url\":\"https:\\\/\\\/psahni.com\\\/\",\"name\":\"psahni.com\",\"inLanguage\":\"en-GB\",\"publisher\":{\"@id\":\"https:\\\/\\\/psahni.com\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"AWS HSM \u2013 Upload Private Key - Pankaj Sahni","description":"AWS CloudHSM lets you manage and access your keys on FIPS-validated hardware, protected with customer-owned, single-tenant HSM instances that run in your own Virtual Private Cloud (VPC). Describe HSM cluster: aws cloudhsmv2 describe-clusters --region=eu-east-1 Generate private key to initialize HSM cluster: openssl genrsa -aes256 -out customerCA.key 2048 Generate public certificate to initialize HSM cluster: openssl","canonical_url":"https:\/\/psahni.com\/?p=53","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BlogPosting","@id":"https:\/\/psahni.com\/?p=53#blogposting","name":"AWS HSM \u2013 Upload Private Key - Pankaj Sahni","headline":"AWS HSM &#8211; Upload Private Key","author":{"@id":"https:\/\/psahni.com\/?author=1#author"},"publisher":{"@id":"https:\/\/psahni.com\/#organization"},"datePublished":"2024-03-23T07:09:29+00:00","dateModified":"2024-03-28T11:11:42+00:00","inLanguage":"en-GB","mainEntityOfPage":{"@id":"https:\/\/psahni.com\/?p=53#webpage"},"isPartOf":{"@id":"https:\/\/psahni.com\/?p=53#webpage"},"articleSection":"Blog"},{"@type":"BreadcrumbList","@id":"https:\/\/psahni.com\/?p=53#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/psahni.com#listItem","position":1,"name":"Home","item":"https:\/\/psahni.com","nextItem":{"@type":"ListItem","@id":"https:\/\/psahni.com\/?cat=1#listItem","name":"Blog"}},{"@type":"ListItem","@id":"https:\/\/psahni.com\/?cat=1#listItem","position":2,"name":"Blog","item":"https:\/\/psahni.com\/?cat=1","nextItem":{"@type":"ListItem","@id":"https:\/\/psahni.com\/?p=53#listItem","name":"AWS HSM &#8211; Upload Private Key"},"previousItem":{"@type":"ListItem","@id":"https:\/\/psahni.com#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/psahni.com\/?p=53#listItem","position":3,"name":"AWS HSM &#8211; Upload Private Key","previousItem":{"@type":"ListItem","@id":"https:\/\/psahni.com\/?cat=1#listItem","name":"Blog"}}]},{"@type":"Organization","@id":"https:\/\/psahni.com\/#organization","name":"psahni.com","url":"https:\/\/psahni.com\/"},{"@type":"Person","@id":"https:\/\/psahni.com\/?author=1#author","url":"https:\/\/psahni.com\/?author=1","name":"psahni.com","image":{"@type":"ImageObject","@id":"https:\/\/psahni.com\/?p=53#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/eff2190eda7f1daafcb4d352c20ae0ab?s=96&d=mm&r=g","width":96,"height":96,"caption":"psahni.com"}},{"@type":"WebPage","@id":"https:\/\/psahni.com\/?p=53#webpage","url":"https:\/\/psahni.com\/?p=53","name":"AWS HSM \u2013 Upload Private Key - Pankaj Sahni","description":"AWS CloudHSM lets you manage and access your keys on FIPS-validated hardware, protected with customer-owned, single-tenant HSM instances that run in your own Virtual Private Cloud (VPC). Describe HSM cluster: aws cloudhsmv2 describe-clusters --region=eu-east-1 Generate private key to initialize HSM cluster: openssl genrsa -aes256 -out customerCA.key 2048 Generate public certificate to initialize HSM cluster: openssl","inLanguage":"en-GB","isPartOf":{"@id":"https:\/\/psahni.com\/#website"},"breadcrumb":{"@id":"https:\/\/psahni.com\/?p=53#breadcrumblist"},"author":{"@id":"https:\/\/psahni.com\/?author=1#author"},"creator":{"@id":"https:\/\/psahni.com\/?author=1#author"},"datePublished":"2024-03-23T07:09:29+00:00","dateModified":"2024-03-28T11:11:42+00:00"},{"@type":"WebSite","@id":"https:\/\/psahni.com\/#website","url":"https:\/\/psahni.com\/","name":"psahni.com","inLanguage":"en-GB","publisher":{"@id":"https:\/\/psahni.com\/#organization"}}]},"og:locale":"en_GB","og:site_name":"Pankaj Sahni -","og:type":"article","og:title":"AWS HSM \u2013 Upload Private Key - Pankaj Sahni","og:description":"AWS CloudHSM lets you manage and access your keys on FIPS-validated hardware, protected with customer-owned, single-tenant HSM instances that run in your own Virtual Private Cloud (VPC). Describe HSM cluster: aws cloudhsmv2 describe-clusters --region=eu-east-1 Generate private key to initialize HSM cluster: openssl genrsa -aes256 -out customerCA.key 2048 Generate public certificate to initialize HSM cluster: openssl","og:url":"https:\/\/psahni.com\/?p=53","article:published_time":"2024-03-23T07:09:29+00:00","article:modified_time":"2024-03-28T11:11:42+00:00","twitter:card":"summary_large_image","twitter:title":"AWS HSM \u2013 Upload Private Key - Pankaj Sahni","twitter:description":"AWS CloudHSM lets you manage and access your keys on FIPS-validated hardware, protected with customer-owned, single-tenant HSM instances that run in your own Virtual Private Cloud (VPC). Describe HSM cluster: aws cloudhsmv2 describe-clusters --region=eu-east-1 Generate private key to initialize HSM cluster: openssl genrsa -aes256 -out customerCA.key 2048 Generate public certificate to initialize HSM cluster: openssl"},"aioseo_meta_data":{"post_id":"53","title":null,"description":null,"keywords":[],"keyphrases":{"focus":{"keyphrase":"","score":0,"analysis":{"keyphraseInTitle":{"score":0,"maxScore":9,"error":1}}},"additional":[]},"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":null,"og_article_tags":[],"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"BlogPosting","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":"-1","robots_max_videopreview":"-1","robots_max_imagepreview":"large","priority":null,"frequency":"default","local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2024-03-23 07:09:30","updated":"2025-09-26 21:55:08","seo_analyzer_scan_date":null,"focus_keyword":null,"additional_keywords":null,"truseo_locale":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/psahni.com\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/psahni.com\/?cat=1\" title=\"Blog\">Blog<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tAWS HSM \u2013 Upload Private Key\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/psahni.com"},{"label":"Blog","link":"https:\/\/psahni.com\/?cat=1"},{"label":"AWS HSM &#8211; Upload Private Key","link":"https:\/\/psahni.com\/?p=53"}],"_links":{"self":[{"href":"https:\/\/psahni.com\/index.php?rest_route=\/wp\/v2\/posts\/53"}],"collection":[{"href":"https:\/\/psahni.com\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/psahni.com\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/psahni.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/psahni.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=53"}],"version-history":[{"count":3,"href":"https:\/\/psahni.com\/index.php?rest_route=\/wp\/v2\/posts\/53\/revisions"}],"predecessor-version":[{"id":71,"href":"https:\/\/psahni.com\/index.php?rest_route=\/wp\/v2\/posts\/53\/revisions\/71"}],"wp:attachment":[{"href":"https:\/\/psahni.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=53"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/psahni.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=53"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/psahni.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=53"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}