CertificateSettings (API Reference)
Class CertificateSettings
Certificate settings to be used by Curl+OpenSSL for authority
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe CA file as blob (https://curl.se/libcurl/c/CURLOPT_CAINFO_BLOB.html) Binary data of PEM encoded content holding one or more certificates to verify the HTTPS server with.The client certificate file as blob (https://curl.se/libcurl/c/CURLOPT_SSLCERT_BLOB.html) The format must be "P12" or "PEM" on OpenSSL.The client key certificate file as blob (https://curl.se/libcurl/c/CURLOPT_SSLKEY_BLOB.html) Compatible with OpenSSL. -
Constructor Summary
ConstructorsConstructorDescriptionCertificateSettings(String clientCertFileBlob, String clientKeyFileBlob) Creates a new instance. -
Method Summary
-
Field Details
-
clientCertFileBlob
The client certificate file as blob (https://curl.se/libcurl/c/CURLOPT_SSLCERT_BLOB.html) The format must be "P12" or "PEM" on OpenSSL. Note: This is a beta release of this feature, so there could be a few bugs and unexpected behaviors. Related APIs may change for new releases without a deprecation process.
-
clientKeyFileBlob
The client key certificate file as blob (https://curl.se/libcurl/c/CURLOPT_SSLKEY_BLOB.html) Compatible with OpenSSL. Note: This is a beta release of this feature, so there could be a few bugs and unexpected behaviors. Related APIs may change for new releases without a deprecation process.
-
certFileBlob
The CA file as blob (https://curl.se/libcurl/c/CURLOPT_CAINFO_BLOB.html) Binary data of PEM encoded content holding one or more certificates to verify the HTTPS server with. Note: This is a beta release of this feature, so there could be a few bugs and unexpected behaviors. Related APIs may change for new releases without a deprecation process.
-
-
Constructor Details
-
CertificateSettings
Creates a new instance.
- Parameters:
clientCertFileBlob-The client certificate file as blob (https://curl.se/libcurl/c/CURLOPT_SSLCERT_BLOB.html) The format must be "P12" or "PEM" on OpenSSL. Note: This is a beta release of this feature, so there could be a few bugs and unexpected behaviors. Related APIs may change for new releases without a deprecation process.
clientKeyFileBlob-The client key certificate file as blob (https://curl.se/libcurl/c/CURLOPT_SSLKEY_BLOB.html) Compatible with OpenSSL. Note: This is a beta release of this feature, so there could be a few bugs and unexpected behaviors. Related APIs may change for new releases without a deprecation process.
-
-
Method Details