Topics
All
MacOS
(Only)
Windows
(Only)
Linux
(Only, Not)
iOS
(Only, Not)
Components
Crossplatform Mac & Win
Server
Client
Old
Deprecated
Guides
Examples
Videos
New in version:
12.2
12.3
12.4
12.5
13.0
13.1
13.2
13.3
13.4
13.5
Statistic
FMM
Blog
CURL.SetOptionProxyIssuerCertBlob
Set proxy issuer SSL certificate from memory blob.
Component |
Version |
macOS |
Windows |
Linux |
Server |
iOS SDK |
CURL
|
10.3 |
✅ Yes |
✅ Yes |
✅ Yes |
✅ Yes |
✅ Yes |
MBS( "CURL.SetOptionProxyIssuerCertBlob"; curl; Value { ; Encoding } )
More
MBS(
"CURL.SetOptionProxyIssuerCertBlob"; /* Set proxy issuer SSL certificate from memory blob. */
$curl; /* The CURL session handle. */
$Value; /* The blob value.
Either passed as text or passed as container value.e.g. MyTabel::MyCert */
$Encoding) /* Optional; The text encoding for value parameter when passing text.
Default is UTF-8.e.g. "UTF8" */
Less
Parameters
Parameter |
Description |
Example |
Flags |
curl |
The CURL session handle. |
$curl |
|
Value |
The blob value.
Either passed as text or passed as container value. |
MyTabel::MyCert |
|
Encoding |
The text encoding for value parameter when passing text.
Default is UTF-8. Possible encoding names: ANSI, ISO-8859-1, Latin1, Mac, Native, UTF-8, DOS, Hex, Base64 or Windows. More listed in the FAQ. |
"UTF8" |
Optional |
Result
Returns OK or error.
Description
Set proxy issuer SSL certificate from memory blob.
Pass a text or container value, which contains binary data of a CA certificate in PEM format. If the option is set, an additional check against the peer certificate is performed to verify the issuer of the the HTTPS proxy is indeed the one associated with the certificate provided by the option. This additional check is useful in multi-level PKI where one needs to enforce that the peer certificate is from a specific branch of the tree.
This option should be used in combination with the CURL.SetOptionProxySSLVerifyPeer option. Otherwise, the result of the check is not considered as failure.
A specific error code (CURLE_SSL_ISSUER_ERROR) is defined with the option, which is returned if the setup of the SSL/TLS session has failed due to a mismatch with the issuer of peer certificate (CURL.SetOptionProxySSLVerifyPeer has to be set too for the check to fail).
This option is an alternative to CURL.SetOptionProxyIssuerCert which instead expects a file name as input.
See also PROXY_ISSUERCERT_BLOB option in CURL manual.
Examples
Set certificate with container field:
MBS( "CURL.SetOptionProxyIssuerCertBlob"; $curl; Settings::ProxyIssuerCert)
See also
Release notes
- Version 10.4
- Version 10.3
Blog Entries
Created 24th June 2020, last changed 24th June 2020
CURL.SetOptionProxyIssuerCert
-
CURL.SetOptionProxyKeyPassword