Class CertificateSettings

java.lang.Object
com.here.sdk.core.engine.CertificateSettings

public final class CertificateSettings extends Object

Certificate settings to be used by Curl+OpenSSL for authority

  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    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.
    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

    Constructors
    Constructor
    Description
    CertificateSettings(String clientCertFileBlob, String clientKeyFileBlob)
    Creates a new instance.
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
     
    int
     

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • clientCertFileBlob

      @NonNull public 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 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 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 Details

    • CertificateSettings

      public CertificateSettings(@NonNull String clientCertFileBlob, @NonNull 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.

  • Method Details