Class CertificateSettings
Class CertificateSettings
- java.lang.Object
-
- com.here.sdk.core.engine.CertificateSettings
-
public final class CertificateSettings extends java.lang.ObjectCertificate settings to be used by Curl+OpenSSL for authority
-
-
Field Summary
Fields Modifier and Type Field Description java.lang.StringcertFileBlobThe 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.java.lang.StringclientCertFileBlobThe client certificate file as blob (https://curl.se/libcurl/c/CURLOPT_SSLCERT_BLOB.html) The format must be "P12" or "PEM" on OpenSSL.java.lang.StringclientKeyFileBlobThe client key certificate file as blob (https://curl.se/libcurl/c/CURLOPT_SSLKEY_BLOB.html) Compatible with OpenSSL.
-
Constructor Summary
Constructors Constructor Description CertificateSettings(java.lang.String clientCertFileBlob, java.lang.String clientKeyFileBlob)Creates a new instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)inthashCode()
-
-
-
Field Detail
-
clientCertFileBlob
@NonNull public java.lang.String 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
@NonNull public java.lang.String 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
@Nullable public java.lang.String 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 Detail
-
CertificateSettings
public CertificateSettings(@NonNull java.lang.String clientCertFileBlob, @NonNull java.lang.String clientKeyFileBlob)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.
-
-