Class CertificateSettings

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

  • public final class CertificateSettings
    extends java.lang.Object

    Certificate settings to be used by Curl+OpenSSL for authority

    • Field Summary

      Fields 
      Modifier and Type Field Description
      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.
      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.
      java.lang.String clientKeyFileBlob
      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​(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
      boolean equals​(java.lang.Object obj)  
      int hashCode()  
      • Methods inherited from class java.lang.Object

        clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
    • 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.

    • Method Detail

      • equals

        public boolean equals​(java.lang.Object obj)
        Overrides:
        equals in class java.lang.Object
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class java.lang.Object