{"id":3997,"date":"2022-12-20T17:28:39","date_gmt":"2022-12-20T20:28:39","guid":{"rendered":"http:\/\/lode.uno\/linux-man\/index.php\/2022\/12\/20\/proxy-certificates-man7\/"},"modified":"2022-12-20T17:28:39","modified_gmt":"2022-12-20T20:28:39","slug":"proxy-certificates-man7","status":"publish","type":"post","link":"https:\/\/lode.uno\/linux-man\/2022\/12\/20\/proxy-certificates-man7\/","title":{"rendered":"PROXY-CERTIFICATES (man7)"},"content":{"rendered":"<h1 align=\"center\">PROXY-CERTIFICATES<\/h1>\n<p> <a href=\"#NAME\">NAME<\/a><br \/> <a href=\"#DESCRIPTION\">DESCRIPTION<\/a><br \/> <a href=\"#NOTES\">NOTES<\/a><br \/> <a href=\"#SEE ALSO\">SEE ALSO<\/a><br \/> <a href=\"#COPYRIGHT\">COPYRIGHT<\/a> <\/p>\n<hr>\n<h2>NAME <a name=\"NAME\"><\/a> <\/h2>\n<p style=\"margin-left:11%; margin-top: 1em\">proxy\u2212certificates \u2212 Proxy certificates in OpenSSL<\/p>\n<h2>DESCRIPTION <a name=\"DESCRIPTION\"><\/a> <\/h2>\n<p style=\"margin-left:11%; margin-top: 1em\">Proxy certificates are defined in <small>RFC 3820.<\/small> They are used to extend rights to some other entity (a computer process, typically, or sometimes to the user itself). This allows the entity to perform operations on behalf of the owner of the <small>EE<\/small> (End Entity) certificate.<\/p>\n<p style=\"margin-left:11%; margin-top: 1em\">The requirements for a valid proxy certificate are:<\/p>\n<table width=\"100%\" border=\"0\" rules=\"none\" frame=\"void\" cellspacing=\"0\" cellpadding=\"0\">\n<tr valign=\"top\" align=\"left\">\n<td width=\"11%\"><\/td>\n<td width=\"1%\">\n<p>\u2022<\/p>\n<\/td>\n<td width=\"5%\"><\/td>\n<td width=\"83%\">\n<p>They are issued by an End Entity, either a normal <small>EE<\/small> certificate, or another proxy certificate.<\/p>\n<\/td>\n<\/tr>\n<tr valign=\"top\" align=\"left\">\n<td width=\"11%\"><\/td>\n<td width=\"1%\">\n<p>\u2022<\/p>\n<\/td>\n<td width=\"5%\"><\/td>\n<td width=\"83%\">\n<p>They must not have the <b>subjectAltName<\/b> or <b>issuerAltName<\/b> extensions.<\/p>\n<\/td>\n<\/tr>\n<tr valign=\"top\" align=\"left\">\n<td width=\"11%\"><\/td>\n<td width=\"1%\">\n<p>\u2022<\/p>\n<\/td>\n<td width=\"5%\"><\/td>\n<td width=\"83%\">\n<p>They must have the <b>proxyCertInfo<\/b> extension.<\/p>\n<\/td>\n<\/tr>\n<tr valign=\"top\" align=\"left\">\n<td width=\"11%\"><\/td>\n<td width=\"1%\">\n<p>\u2022<\/p>\n<\/td>\n<td width=\"5%\"><\/td>\n<td width=\"83%\">\n<p>They must have the subject of their issuer, with one <b>commonName<\/b> added.<\/p>\n<\/td>\n<\/tr>\n<\/table>\n<p style=\"margin-left:11%; margin-top: 1em\"><b>Enabling proxy certificate verification<\/b> <br \/> OpenSSL expects applications that want to use proxy certificates to be specially aware of them, and make that explicit. This is done by setting an X509 verification flag:<\/p>\n<p style=\"margin-left:11%; margin-top: 1em\">X509_STORE_CTX_set_flags(ctx, X509_V_FLAG_ALLOW_PROXY_CERTS);<\/p>\n<p style=\"margin-left:11%; margin-top: 1em\">or<\/p>\n<p style=\"margin-left:11%; margin-top: 1em\">X509_VERIFY_PARAM_set_flags(param, X509_V_FLAG_ALLOW_PROXY_CERTS);<\/p>\n<p style=\"margin-left:11%; margin-top: 1em\">See &#8221; <small>NOTES&#8221;<\/small> for a discussion on this requirement.<\/p>\n<p style=\"margin-left:11%; margin-top: 1em\"><b>Creating proxy certificates<\/b> <br \/> Creating proxy certificates can be done using the <b>openssl\u2212x509<\/b>(1) command, with some extra extensions:<\/p>\n<p style=\"margin-left:11%; margin-top: 1em\">[ v3_proxy ] <br \/> # A proxy certificate MUST NEVER be a CA certificate. <br \/> basicConstraints=CA:FALSE <br \/> # Usual authority key ID <br \/> authorityKeyIdentifier=keyid,issuer:always <br \/> # The extension which marks this certificate as a proxy <br \/> proxyCertInfo=critical,language:id\u2212ppl\u2212anyLanguage,pathlen:1,policy:text:AB<\/p>\n<p style=\"margin-left:11%; margin-top: 1em\">It\u2019s also possible to specify the proxy extension in a separate section:<\/p>\n<p style=\"margin-left:11%; margin-top: 1em\">proxyCertInfo=critical,@proxy_ext <br \/> [ proxy_ext ] <br \/> language=id\u2212ppl\u2212anyLanguage <br \/> pathlen=0 <br \/> policy=text:BC<\/p>\n<p style=\"margin-left:11%; margin-top: 1em\">The policy value has a specific syntax, <i>syntag<\/i>:<i>string<\/i>, where the <i>syntag<\/i> determines what will be done with the string. The following <i>syntag<\/i>s are recognised: <b><br \/> text<\/b><\/p>\n<p style=\"margin-left:17%;\">indicates that the string is a byte sequence, without any encoding:<\/p>\n<p style=\"margin-left:17%; margin-top: 1em\">policy=text:raeksmoergaas<\/p>\n<table width=\"100%\" border=\"0\" rules=\"none\" frame=\"void\" cellspacing=\"0\" cellpadding=\"0\">\n<tr valign=\"top\" align=\"left\">\n<td width=\"11%\"><\/td>\n<td width=\"4%\">\n<p><b>hex<\/b><\/p>\n<\/td>\n<td width=\"2%\"><\/td>\n<td width=\"83%\">\n<p>indicates the string is encoded hexadecimal encoded binary data, with colons between each byte (every second hex digit):<\/p>\n<\/td>\n<\/tr>\n<\/table>\n<p style=\"margin-left:17%; margin-top: 1em\">policy=hex:72:E4:6B:73:6D:F6:72:67:E5:73<\/p>\n<p style=\"margin-left:11%;\"><b>file<\/b><\/p>\n<p style=\"margin-left:17%;\">indicates that the text of the policy should be taken from a file. The string is then a filename. This is useful for policies that are large (more than a few lines, e.g. <small>XML<\/small> documents).<\/p>\n<p style=\"margin-left:11%; margin-top: 1em\"><i><small>NOTE:<\/small> The proxy policy value is what determines the rights granted to the process during the proxy certificate. It\u2019s up to the application to interpret and combine these policies.<\/i><\/p>\n<p style=\"margin-left:11%; margin-top: 1em\">With a proxy extension, creating a proxy certificate is a matter of two commands:<\/p>\n<p style=\"margin-left:11%; margin-top: 1em\">openssl req \u2212new \u2212config proxy.cnf  <br \/> \u2212out proxy.req \u2212keyout proxy.key  <br \/> \u2212subj &#8220;\/DC=org\/DC=openssl\/DC=users\/CN=proxy 1&#8221; <br \/> openssl x509 \u2212req \u2212CAcreateserial \u2212in proxy.req \u2212out proxy.crt  <br \/> \u2212CA user.crt \u2212CAkey user.key \u2212days 7  <br \/> \u2212extfile proxy.cnf \u2212extensions v3_proxy1<\/p>\n<p style=\"margin-left:11%; margin-top: 1em\">You can also create a proxy certificate using another proxy certificate as issuer (note: using a different configuration section for the proxy extensions):<\/p>\n<p style=\"margin-left:11%; margin-top: 1em\">openssl req \u2212new \u2212config proxy.cnf  <br \/> \u2212out proxy2.req \u2212keyout proxy2.key  <br \/> \u2212subj &#8220;\/DC=org\/DC=openssl\/DC=users\/CN=proxy 1\/CN=proxy 2&#8221; <br \/> openssl x509 \u2212req \u2212CAcreateserial \u2212in proxy2.req \u2212out proxy2.crt  <br \/> \u2212CA proxy.crt \u2212CAkey proxy.key \u2212days 7  <br \/> \u2212extfile proxy.cnf \u2212extensions v3_proxy2<\/p>\n<p style=\"margin-left:11%; margin-top: 1em\"><b>Using proxy certs in applications<\/b> <br \/> To interpret proxy policies, the application would normally start with some default rights (perhaps none at all), then compute the resulting rights by checking the rights against the chain of proxy certificates, user certificate and <small>CA<\/small> certificates.<\/p>\n<p style=\"margin-left:11%; margin-top: 1em\">The complicated part is figuring out how to pass data between your application and the certificate validation procedure.<\/p>\n<p style=\"margin-left:11%; margin-top: 1em\">The following ingredients are needed for such processing:<\/p>\n<table width=\"100%\" border=\"0\" rules=\"none\" frame=\"void\" cellspacing=\"0\" cellpadding=\"0\">\n<tr valign=\"top\" align=\"left\">\n<td width=\"11%\"><\/td>\n<td width=\"1%\">\n<p>\u2022<\/p>\n<\/td>\n<td width=\"5%\"><\/td>\n<td width=\"83%\">\n<p>a callback function that will be called for every certificate being validated. The callback is called several times for each certificate, so you must be careful to do the proxy policy interpretation at the right time. You also need to fill in the defaults when the <small>EE<\/small> certificate is checked.<\/p>\n<\/td>\n<\/tr>\n<tr valign=\"top\" align=\"left\">\n<td width=\"11%\"><\/td>\n<td width=\"1%\">\n<p>\u2022<\/p>\n<\/td>\n<td width=\"5%\"><\/td>\n<td width=\"83%\">\n<p>a data structure that is shared between your application code and the callback.<\/p>\n<\/td>\n<\/tr>\n<tr valign=\"top\" align=\"left\">\n<td width=\"11%\"><\/td>\n<td width=\"1%\">\n<p>\u2022<\/p>\n<\/td>\n<td width=\"5%\"><\/td>\n<td width=\"83%\">\n<p>a wrapper function that sets it all up.<\/p>\n<\/td>\n<\/tr>\n<tr valign=\"top\" align=\"left\">\n<td width=\"11%\"><\/td>\n<td width=\"1%\">\n<p>\u2022<\/p>\n<\/td>\n<td width=\"5%\"><\/td>\n<td width=\"83%\">\n<p>an ex_data index function that creates an index into the generic ex_data store that is attached to an X509 validation context.<\/p>\n<\/td>\n<\/tr>\n<\/table>\n<p style=\"margin-left:11%; margin-top: 1em\">The following skeleton code can be used as a starting point:<\/p>\n<p style=\"margin-left:11%; margin-top: 1em\">#include <string.h> <br \/> #include <netdb.h> <br \/> #include <openssl\/x509.h> <br \/> #include <openssl\/x509v3.h> <br \/> #define total_rights 25 <br \/> \/bin \/boot \/dead.letter \/dev \/etc \/home \/initrd \/lib \/lib64 \/lost+found \/media \/mnt \/opt \/proc \/release-notes.html \/release-notes.txt \/root \/run \/sbin \/srv \/sys \/tmp \/usr \/var <br \/> bodies manpages.csv script_extrae_body.sh script.sh usr In this example, I will use a view of granted rights as a bit <br \/> bodies manpages.csv script_extrae_body.sh script.sh usr array, one bit for each possible right. <br \/> bodies\/ usr\/ <br \/> typedef struct your_rights { <br \/> unsigned char rights[(total_rights + 7) \/ 8]; <br \/> } YOUR_RIGHTS; <br \/> \/bin \/boot \/dead.letter \/dev \/etc \/home \/initrd \/lib \/lib64 \/lost+found \/media \/mnt \/opt \/proc \/release-notes.html \/release-notes.txt \/root \/run \/sbin \/srv \/sys \/tmp \/usr \/var <br \/> bodies manpages.csv script_extrae_body.sh script.sh usr The following procedure will create an index for the ex_data <br \/> bodies manpages.csv script_extrae_body.sh script.sh usr store in the X509 validation context the first time it&#8217;s <br \/> bodies manpages.csv script_extrae_body.sh script.sh usr called. Subsequent calls will return the same index. <br \/> bodies\/ usr\/ <br \/> static int get_proxy_auth_ex_data_idx(X509_STORE_CTX *ctx) <br \/> { <br \/> static volatile int idx = \u22121; <br \/> if (idx < 0) { <br \/> X509_STORE_lock(X509_STORE_CTX_get0_store(ctx)); <br \/> if (idx < 0) { <br \/> idx = X509_STORE_CTX_get_ex_new_index(0, <br \/> &#8220;for verify callback&#8221;, <br \/> NULL,NULL,NULL); <br \/> } <br \/> X509_STORE_unlock(X509_STORE_CTX_get0_store(ctx)); <br \/> } <br \/> return idx; <br \/> } <br \/> \/bin \/boot \/dead.letter \/dev \/etc \/home \/initrd \/lib \/lib64 \/lost+found \/media \/mnt \/opt \/proc \/release-notes.html \/release-notes.txt \/root \/run \/sbin \/srv \/sys \/tmp \/usr \/var Callback to be given to the X509 validation procedure. bodies\/ usr\/ <br \/> static int verify_callback(int ok, X509_STORE_CTX *ctx) <br \/> { <br \/> if (ok == 1) { <br \/> \/bin \/boot \/dead.letter \/dev \/etc \/home \/initrd \/lib \/lib64 \/lost+found \/media \/mnt \/opt \/proc \/release-notes.html \/release-notes.txt \/root \/run \/sbin \/srv \/sys \/tmp \/usr \/var <br \/> bodies manpages.csv script_extrae_body.sh script.sh usr It&#8217;s REALLY important you keep the proxy policy check <br \/> bodies manpages.csv script_extrae_body.sh script.sh usr within this section. It&#8217;s important to know that when <br \/> bodies manpages.csv script_extrae_body.sh script.sh usr ok is 1, the certificates are checked from top to <br \/> bodies manpages.csv script_extrae_body.sh script.sh usr bottom. You get the CA root first, followed by the <br \/> bodies manpages.csv script_extrae_body.sh script.sh usr possible chain of intermediate CAs, followed by the EE <br \/> bodies manpages.csv script_extrae_body.sh script.sh usr certificate, followed by the possible proxy <br \/> bodies manpages.csv script_extrae_body.sh script.sh usr certificates. <br \/> bodies\/ usr\/ <br \/> X509 *xs = X509_STORE_CTX_get_current_cert(ctx); <br \/> if (X509_get_extension_flags(xs) &#038; EXFLAG_PROXY) { <br \/> YOUR_RIGHTS *rights = <br \/> (YOUR_RIGHTS *)X509_STORE_CTX_get_ex_data(ctx, <br \/> get_proxy_auth_ex_data_idx(ctx)); <br \/> PROXY_CERT_INFO_EXTENSION *pci = <br \/> X509_get_ext_d2i(xs, NID_proxyCertInfo, NULL, NULL); <br \/> switch (OBJ_obj2nid(pci\u2212>proxyPolicy\u2212>policyLanguage)) { <br \/> case NID_Independent: <br \/> \/bin \/boot \/dead.letter \/dev \/etc \/home \/initrd \/lib \/lib64 \/lost+found \/media \/mnt \/opt \/proc \/release-notes.html \/release-notes.txt \/root \/run \/sbin \/srv \/sys \/tmp \/usr \/var <br \/> bodies manpages.csv script_extrae_body.sh script.sh usr Do whatever you need to grant explicit rights <br \/> bodies manpages.csv script_extrae_body.sh script.sh usr to this particular proxy certificate, usually <br \/> bodies manpages.csv script_extrae_body.sh script.sh usr by pulling them from some database. If there <br \/> bodies manpages.csv script_extrae_body.sh script.sh usr are none to be found, clear all rights (making <br \/> bodies manpages.csv script_extrae_body.sh script.sh usr this and any subsequent proxy certificate void <br \/> bodies manpages.csv script_extrae_body.sh script.sh usr of any rights). <br \/> bodies\/ usr\/ <br \/> memset(rights\u2212>rights, 0, sizeof(rights\u2212>rights)); <br \/> break; <br \/> case NID_id_ppl_inheritAll: <br \/> \/bin \/boot \/dead.letter \/dev \/etc \/home \/initrd \/lib \/lib64 \/lost+found \/media \/mnt \/opt \/proc \/release-notes.html \/release-notes.txt \/root \/run \/sbin \/srv \/sys \/tmp \/usr \/var <br \/> bodies manpages.csv script_extrae_body.sh script.sh usr This is basically a NOP, we simply let the <br \/> bodies manpages.csv script_extrae_body.sh script.sh usr current rights stand as they are. <br \/> bodies\/ usr\/ <br \/> break; <br \/> default: <br \/> \/bin \/boot \/dead.letter \/dev \/etc \/home \/initrd \/lib \/lib64 \/lost+found \/media \/mnt \/opt \/proc \/release-notes.html \/release-notes.txt \/root \/run \/sbin \/srv \/sys \/tmp \/usr \/var <br \/> bodies manpages.csv script_extrae_body.sh script.sh usr This is usually the most complex section of <br \/> bodies manpages.csv script_extrae_body.sh script.sh usr code. You really do whatever you want as long <br \/> bodies manpages.csv script_extrae_body.sh script.sh usr as you follow RFC 3820. In the example we use <br \/> bodies manpages.csv script_extrae_body.sh script.sh usr here, the simplest thing to do is to build <br \/> bodies manpages.csv script_extrae_body.sh script.sh usr another, temporary bit array and fill it with <br \/> bodies manpages.csv script_extrae_body.sh script.sh usr the rights granted by the current proxy <br \/> bodies manpages.csv script_extrae_body.sh script.sh usr certificate, then use it as a mask on the <br \/> bodies manpages.csv script_extrae_body.sh script.sh usr accumulated rights bit array, and voila, you <br \/> bodies manpages.csv script_extrae_body.sh script.sh usr now have a new accumulated rights bit array. <br \/> bodies\/ usr\/ <br \/> { <br \/> int i; <br \/> YOUR_RIGHTS tmp_rights; <br \/> memset(tmp_rights.rights, 0, <br \/> sizeof(tmp_rights.rights)); <br \/> \/bin \/boot \/dead.letter \/dev \/etc \/home \/initrd \/lib \/lib64 \/lost+found \/media \/mnt \/opt \/proc \/release-notes.html \/release-notes.txt \/root \/run \/sbin \/srv \/sys \/tmp \/usr \/var <br \/> bodies manpages.csv script_extrae_body.sh script.sh usr process_rights() is supposed to be a <br \/> bodies manpages.csv script_extrae_body.sh script.sh usr procedure that takes a string and its <br \/> bodies manpages.csv script_extrae_body.sh script.sh usr length, interprets it and sets the bits <br \/> bodies manpages.csv script_extrae_body.sh script.sh usr in the YOUR_RIGHTS pointed at by the <br \/> bodies manpages.csv script_extrae_body.sh script.sh usr third argument. <br \/> bodies\/ usr\/ <br \/> process_rights((char *) pci\u2212>proxyPolicy\u2212>policy\u2212>data, <br \/> pci\u2212>proxyPolicy\u2212>policy\u2212>length, <br \/> &#038;tmp_rights); <br \/> for(i = 0; i < total_rights \/ 8; i++) <br \/> rights\u2212>rights[i] &#038;= tmp_rights.rights[i]; <br \/> } <br \/> break; <br \/> } <br \/> PROXY_CERT_INFO_EXTENSION_free(pci); <br \/> } else if (!(X509_get_extension_flags(xs) &#038; EXFLAG_CA)) { <br \/> \/bin \/boot \/dead.letter \/dev \/etc \/home \/initrd \/lib \/lib64 \/lost+found \/media \/mnt \/opt \/proc \/release-notes.html \/release-notes.txt \/root \/run \/sbin \/srv \/sys \/tmp \/usr \/var We have an EE certificate, let&#8217;s use it to set default! bodies\/ usr\/ <br \/> YOUR_RIGHTS *rights = <br \/> (YOUR_RIGHTS *)X509_STORE_CTX_get_ex_data(ctx, <br \/> get_proxy_auth_ex_data_idx(ctx)); <br \/> \/bin \/boot \/dead.letter \/dev \/etc \/home \/initrd \/lib \/lib64 \/lost+found \/media \/mnt \/opt \/proc \/release-notes.html \/release-notes.txt \/root \/run \/sbin \/srv \/sys \/tmp \/usr \/var <br \/> bodies manpages.csv script_extrae_body.sh script.sh usr The following procedure finds out what rights the <br \/> bodies manpages.csv script_extrae_body.sh script.sh usr owner of the current certificate has, and sets them <br \/> bodies manpages.csv script_extrae_body.sh script.sh usr in the YOUR_RIGHTS structure pointed at by the <br \/> bodies manpages.csv script_extrae_body.sh script.sh usr second argument. <br \/> bodies\/ usr\/ <br \/> set_default_rights(xs, rights); <br \/> } <br \/> } <br \/> return ok; <br \/> } <br \/> static int my_X509_verify_cert(X509_STORE_CTX *ctx, <br \/> YOUR_RIGHTS *needed_rights) <br \/> { <br \/> int ok; <br \/> int (*save_verify_cb)(int ok,X509_STORE_CTX *ctx) = <br \/> X509_STORE_CTX_get_verify_cb(ctx); <br \/> YOUR_RIGHTS rights; <br \/> X509_STORE_CTX_set_verify_cb(ctx, verify_callback); <br \/> X509_STORE_CTX_set_ex_data(ctx, get_proxy_auth_ex_data_idx(ctx), <br \/> &#038;rights); <br \/> X509_STORE_CTX_set_flags(ctx, X509_V_FLAG_ALLOW_PROXY_CERTS); <br \/> ok = X509_verify_cert(ctx); <br \/> if (ok == 1) { <br \/> ok = check_needed_rights(rights, needed_rights); <br \/> } <br \/> X509_STORE_CTX_set_verify_cb(ctx, save_verify_cb); <br \/> return ok; <br \/> }<\/p>\n<p style=\"margin-left:11%; margin-top: 1em\">If you use <small>SSL<\/small> or <small>TLS,<\/small> you can easily set up a callback to have the certificates checked properly, using the code above:<\/p>\n<p style=\"margin-left:11%; margin-top: 1em\">SSL_CTX_set_cert_verify_callback(s_ctx, my_X509_verify_cert, <br \/> &#038;needed_rights);<\/p>\n<h2>NOTES <a name=\"NOTES\"><\/a> <\/h2>\n<p style=\"margin-left:11%; margin-top: 1em\">To this date, it seems that proxy certificates have only been used in environments that are aware of them, and no one seems to have investigated how they can be used or misused outside of such an environment.<\/p>\n<p style=\"margin-left:11%; margin-top: 1em\">For that reason, OpenSSL requires that applications aware of proxy certificates must also make that explicit.<\/p>\n<p style=\"margin-left:11%; margin-top: 1em\"><b>subjectAltName<\/b> and <b>issuerAltName<\/b> are forbidden in proxy certificates, and this is enforced in OpenSSL. The subject must be the same as the issuer, with one commonName added on.<\/p>\n<h2>SEE ALSO <a name=\"SEE ALSO\"><\/a> <\/h2>\n<p style=\"margin-left:11%; margin-top: 1em\"><b>X509_STORE_CTX_set_flags<\/b>(3), <b>X509_STORE_CTX_set_verify_cb<\/b>(3), <b>X509_VERIFY_PARAM_set_flags<\/b>(3), <b>SSL_CTX_set_cert_verify_callback<\/b>(3), <b>openssl\u2212req<\/b>(1), <b>openssl\u2212x509<\/b>(1), <small>RFC 3820<\/small> <https:\/\/tools.ietf.org\/html\/rfc3820><\/p>\n<h2>COPYRIGHT <a name=\"COPYRIGHT\"><\/a> <\/h2>\n<p style=\"margin-left:11%; margin-top: 1em\">Copyright 2019 The OpenSSL Project Authors. All Rights Reserved.<\/p>\n<p style=\"margin-left:11%; margin-top: 1em\">Licensed under the Apache License 2.0 (the &#8220;License&#8221;). You may not use this file except in compliance with the License. You can obtain a copy in the file <small>LICENSE<\/small> in the source distribution or at <https:\/\/www.openssl.org\/source\/license.html>.<\/p>\n<hr>\n","protected":false},"excerpt":{"rendered":"<p>  proxy\u2212certificates \u2212 Proxy certificates in OpenSSL <\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[971],"tags":[973,972,1085],"class_list":["post-3997","post","type-post","status-publish","format-standard","hentry","category-7-miscelanea","tag-973","tag-man7","tag-proxy-certificates"],"gutentor_comment":0,"_links":{"self":[{"href":"https:\/\/lode.uno\/linux-man\/wp-json\/wp\/v2\/posts\/3997","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/lode.uno\/linux-man\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/lode.uno\/linux-man\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/lode.uno\/linux-man\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/lode.uno\/linux-man\/wp-json\/wp\/v2\/comments?post=3997"}],"version-history":[{"count":0,"href":"https:\/\/lode.uno\/linux-man\/wp-json\/wp\/v2\/posts\/3997\/revisions"}],"wp:attachment":[{"href":"https:\/\/lode.uno\/linux-man\/wp-json\/wp\/v2\/media?parent=3997"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/lode.uno\/linux-man\/wp-json\/wp\/v2\/categories?post=3997"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/lode.uno\/linux-man\/wp-json\/wp\/v2\/tags?post=3997"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}