# Struct secureblackbox::HTTPServer

The HTTPServer struct offers server-side functionality for the HTTP/HTTPS protocols.

## Syntax

```text
secureblackbox::HTTPServer
```

## Remarks

Both plain (HTTP) and secure (HTTPS) connection types are supported.

Follow the below steps to set up and run the server in your code:

- Create an instance of the server component and set up the license, if assumed by the edition you are using:

```text
      var server = new Httpserver();
      server.RuntimeLicense = "5342..0000";

```

- Set up the listening port (make sure it is not in use):

```text
      server.Port = 443;

```

- Tell the component whether TLS connections should be enforced:

```text
      server.UseTLS = true; // set to false to disable TLS and server plain HTTP requests

```

- Set up the document root (a directory where all static files are kept):

```text
      server.DocumentRoot = "c:\\inetpub\\mywebserver";

```

- (TLS-enabled servers only) Configure TLS parameters. The exact way of doing that may vary for different scenarios and security requirements. At the very least you need to set up the certificate chain that the server will use to authenticate itself to connecting clients. If you don"t, the component will generate a dummy certificate itself, however, that certificate is unlikely to pass any security requirements. It will let you accept test connections though.

 Below is an example of tuning up the TLS parameters of the server:

```text
      // *** Switching TLS on and enabling the implicit mode ***
      server.TLSSettings.TLSMode = smImplicitTLS; // this must be implicit for HTTPS

      // Loading the certificate chain
      var mgr = new Certificatemanager();
      mgr.RuntimeLicense = "5342..0000";

      // *** Setting up the host certificate ***

      // - it should be issued in the name that matches the hostname (such as domain.com) or its IP address (1.2.3.4),
      // - it must have an associated private key - so likely is provided in PFX or PEM format.
      mgr.ImportFromFile("CertTLSServer.pfx", "password");
      server.TLSServerChain.Add(mgr.Certificate);

      // The CA certificate: this is to help connecting clients validate the chain.
      mgr.ImportFromFile("CertCA.cer", "");
      server.TLSServerChain.Add(mgr.Certificate);

      // *** Adjusting finer-grained TLS settings ***

      // - session resumption (allows for faster handshakes for connections from the same origin)
      server.TLSSettings.UseSessionResumption = true;

      // - secure configuration
      server.TLSSettings.BaseConfiguration = stpcHighlySecure;

      // - disabling a cipher suite we dislike (just because we can):
      server.TLSSettings.Ciphersuites = "-DHE_RSA_AES128_SHA"

      // *** Configuring versions ***

      // The default version setting at the time of writing (May 2021) is TLS 1.2 and TLS 1.3,
      // but that may change in future versions. The following tune-up additionally activates TLS 1.1 and TLS 1.0,
      // which weakens security, but may be necessary to accept connections from older clients:
      server.TLSSettings.Versions = csbTLS1 | csbTLS11 | csbTLS12 | csbTLS13;

```

- Now that your server has been fully set up, activate it:

```text
      server.Start();

```

- Once the [start](#start-method-httpserver-struct) call completes, your server can accept connections from clients. Each accepted connection runs in a separate thread, not interfering with each other or your own threads. The server communicates its ongoing activities to your application by throwing events. The lower-level events deal with the underlying network connections:

  - [on_accept](#on_accept-event-httpserver-struct) notifies you about a new incoming connection. This event lets you accept or reject it.
  - [on_connect](#on_connect-event-httpserver-struct) notifies your code of an accepted connection. This event introduces a ConnectionID, a unique identifier that you can use to track the connection throughout its lifetime.
  - [on_disconnect](#on_disconnect-event-httpserver-struct) notifies you that a connection has been closed.
  - [on_tls_established](#on_tls_established-event-httpserver-struct) and [on_tls_shutdown](#on_tls_shutdown-event-httpserver-struct) let you know that a TLS layer has been activated/deactivated.
  - [on_error](#on_error-event-httpserver-struct) reports a protocol or other error.
  - on_certificate_validate communicates the client authentication event to your code. To access the certificate(s) provided by the authenticating client, pin the client and use the pinned_client_chain property to access its chain:

```text
          server.PinClient(e.ConnectionID);
          e.Accept = CheckCert(server.PinnedClientChain);

```

 The higher-level events let you know what is going on at the HTTP layer, and let you serve your content on the fly:

  - [on_get_request](#on_get_request-event-httpserver-struct) fires when a GET request is received from a connection.
  - [on_post_request](#on_post_request-event-httpserver-struct) notifies your code about a POST request. Similar events for other HTTP request types (e.g. DELETE) are also available.
  - [on_auth_attempt](#on_auth_attempt-event-httpserver-struct) fires when a connected client tries HTTP authentication (such as basic or digest) and let you accept or reject it.

Note: every such event is thrown from the respective connection thread, so make sure you use some synchronization mechanism when dispatching the events to your UI thread - for example, by updating UI controls by sending a Window Message rather than accessing the controls directly.
- Use get_request_stream, [get_request_string](#get_request_string-method-httpserver-struct), and [get_request_header](#get_request_header-method-httpserver-struct) methods inside your [on_get_request](#on_get_request-event-httpserver-struct) and similar event handlers to access request parameters and content supplied by the client. Use [set_response_header](#set_response_header-method-httpserver-struct) and [set_response_string](#set_response_string-method-httpserver-struct) method to supply the response content:

```text
    void serverGetRequest(object sender, EventArgs e)
    {
        e.Handled = true; // telling the Httpserver object that we will supply our own content

        if (e.URI == "/index.html")
        {
            server.SetResponseStatus(e.ConnectionID, 200);
            server.SetResponseString(e.ConnectionID, "<html><head></head><body>Hello!</body></html>", "text/html");
        }
        else if (e.URI == "/secretfile")
        {
            server.SetResponseStatus(e.ConnectionID, 200);
            server.SetResponseBytes(e.ConnectionID, m_secretData, "application/pdf");
        }
        else if (e.URI.StartsWith("/static/"))
        {
            e.Handled = false; // letting the server process the content and flush the file from the home directory (c:\inetpub\mywebserver)
        }
        else
        {
            Flush404Page(e.ConnectionID);
        }
    }

```

- To stop the server, call [stop](#stop-method-httpserver-struct):

```text
      server.Stop();

```

### HTTPServer and SSLLabs

 Qualys SSLLabs (https://www.ssllabs.com/) has been long known as a comprehensive TLS site quality checking tool. It is now a de-facto standard and a sign of good taste to aspire for the best SSLLabs test result for your web presence. SecureBlackbox developers share that effort and want to help their customers build secure TLS endpoints that can be independently endorsed by third-party evaluators like SSLLabs.

Having said that, when assessing SecureBlackbox TLS-capable servers that are configured to use their default setup, you will often end up with a lower SSLLabs score than you could have. There is a simple reason for that. Being a vendor of a library used by thousands of customers, we have to find a delicate balance between security, compatibility, and keeping class contracts rolling from one product build to another. This makes *the default configuration of the components not the strongest possible*. To put it simple, we could easily make the default component setup bulletproof - but having done that, we would have likely ended up with hundreds of customers stuck with legacy environments (and there are a lot of them around) losing their connectivity.

If you are looking at achieving the best score at SSLLabs, please read on. The below guidance aims to help you tune up the server component in the way that should give you an A score.

First, switch your server to the highly secure base configuration:

```text
  server.TLSSettings.BaseConfiguration = stpcHighlySecure;
```

 This should immediately give you an A, or a T if your server certificate does not chain up to a trusted anchor.

Some warnings will still be included in the report. One of those is related to the session resumption. It is normally shown in orange:

*Session resumption (caching): No (IDs assigned but not accepted)*

This literally means that the server is not configured to re-use older sessions, which may put extra computational burden on clients and itself. Use the following setting to enable session caching:

```text
  server.TLSSettings.UseSessionResumption = true;
```

Besides, the report may show that there are some weak ciphersuites. All of those should be shown in orange (there should not be any reds; if there are - please let us know), which means they are only relatively weak. While switching them off may affect the interoperability level of the server, you may still want to do that. By using the below approach you can disable individual ciphersuites selectively. For example, if the report shows that TLS_DHE_RSA_WITH_AES128_CBC_SHA256 and TLS_DHE_RSA_WITH_AES256_CBC_SHA256 are weak (because of their CBC mode), you can disable them in the following way:

```text
  server.TLSSettings.Ciphersuites = '-DHE_RSA_AES128_SHA256;-DHE_RSA_AES256_SHA256';
```

 Note that SBB uses slightly different, simpler naming convention by dropping unnecessary WITH and CBC. Let us know if you have difficulties matching the cipher suite names.

### Object Lifetime

 The *new()* method returns a mutable reference to a struct instance. The object itself is kept in the global list maintained by SecureBlackbox. Due to this, the HTTPServer struct cannot be disposed of automatically. Please, call the *dispose(&mut; self)* method of HTTPServer when you have finished using the instance.

## Property List

*The following is the full list of the properties of the struct with short descriptions. Click on the links for further details.*

|  |  |
| --- | --- |
| [active](#active-property-httpserver-struct) | Indicates whether the server is active and is listening to new connections. |
| [allow_custom_requests](#allow_custom_requests-property-httpserver-struct) | Allows custom requests. |
| [allow_keep_alive](#allow_keep_alive-property-httpserver-struct) | Enables or disables keep-alive mode. |
| [auth_realm](#auth_realm-property-httpserver-struct) | Specifies authentication realm for digest and NTLM authentication. |
| [auth_types](#auth_types-property-httpserver-struct) | Defines allowed HTTP authentication types. |
| [bound_port](#bound_port-property-httpserver-struct) | Indicates the bound listening port. |
| [compression_level](#compression_level-property-httpserver-struct) | The default compression level to use. |
| [document_root](#document_root-property-httpserver-struct) | The document root of the server. |
| [external_crypto_async_document_id](#external_crypto_async_document_id-property-httpserver-struct) | Specifies an optional document ID for SignAsyncBegin() and SignAsyncEnd() calls. |
| [external_crypto_custom_params](#external_crypto_custom_params-property-httpserver-struct) | Custom parameters to be passed to the signing service (uninterpreted). |
| [external_crypto_data](#external_crypto_data-property-httpserver-struct) | Additional data to be included in the async state and mirrored back by the requestor. |
| [external_crypto_external_hash_calculation](#external_crypto_external_hash_calculation-property-httpserver-struct) | Specifies whether the message hash is to be calculated at the external endpoint. |
| [external_crypto_hash_algorithm](#external_crypto_hash_algorithm-property-httpserver-struct) | Specifies the request's signature hash algorithm. |
| [external_crypto_key_id](#external_crypto_key_id-property-httpserver-struct) | The ID of the pre-shared key used for DC request authentication. |
| [external_crypto_key_secret](#external_crypto_key_secret-property-httpserver-struct) | The pre-shared key used for DC request authentication. |
| [external_crypto_method](#external_crypto_method-property-httpserver-struct) | Specifies the asynchronous signing method. |
| [external_crypto_mode](#external_crypto_mode-property-httpserver-struct) | Specifies the external cryptography mode. |
| [external_crypto_public_key_algorithm](#external_crypto_public_key_algorithm-property-httpserver-struct) | Provide the public key algorithm here if the certificate is not available on the pre-signing stage. |
| [fips_mode](#fips_mode-property-httpserver-struct) | Reserved. |
| [handshake_timeout](#handshake_timeout-property-httpserver-struct) | Specifies the handshake timeout in milliseconds. |
| [host](#host-property-httpserver-struct) | The host to bind the listening port to. |
| [pinned_client_aead_cipher](#pinned_client_aead_cipher-property-httpserver-struct) | Indicates whether the encryption algorithm used is an AEAD cipher. |
| [pinned_client_chain_validation_details](#pinned_client_chain_validation_details-property-httpserver-struct) | The details of a certificate chain validation outcome. |
| [pinned_client_chain_validation_result](#pinned_client_chain_validation_result-property-httpserver-struct) | The outcome of a certificate chain validation routine. |
| [pinned_client_ciphersuite](#pinned_client_ciphersuite-property-httpserver-struct) | The cipher suite employed by this connection. |
| [pinned_client_client_authenticated](#pinned_client_client_authenticated-property-httpserver-struct) | Specifies whether client authentication was performed during this connection. |
| [pinned_client_client_auth_requested](#pinned_client_client_auth_requested-property-httpserver-struct) | Specifies whether client authentication was requested during this connection. |
| [pinned_client_connection_established](#pinned_client_connection_established-property-httpserver-struct) | Indicates whether the connection has been established fully. |
| [pinned_client_connection_id](#pinned_client_connection_id-property-httpserver-struct) | The unique identifier assigned to this connection. |
| [pinned_client_digest_algorithm](#pinned_client_digest_algorithm-property-httpserver-struct) | The digest algorithm used in a TLS-enabled connection. |
| [pinned_client_encryption_algorithm](#pinned_client_encryption_algorithm-property-httpserver-struct) | The symmetric encryption algorithm used in a TLS-enabled connection. |
| [pinned_client_exportable](#pinned_client_exportable-property-httpserver-struct) | Indicates whether a TLS connection uses a reduced-strength exportable cipher. |
| [pinned_client_group](#pinned_client_group-property-httpserver-struct) | The elliptic curve used in this connection. |
| [pinned_client_id](#pinned_client_id-property-httpserver-struct) | The client connection's unique identifier. |
| [pinned_client_key_exchange_algorithm](#pinned_client_key_exchange_algorithm-property-httpserver-struct) | The key exchange algorithm used in a TLS-enabled connection. |
| [pinned_client_key_exchange_key_bits](#pinned_client_key_exchange_key_bits-property-httpserver-struct) | The length of the key exchange key of a TLS-enabled connection. |
| [pinned_client_pfs_cipher](#pinned_client_pfs_cipher-property-httpserver-struct) | Indicates whether the chosen ciphersuite provides perfect forward secrecy (PFS). |
| [pinned_client_pre_shared_identity](#pinned_client_pre_shared_identity-property-httpserver-struct) | Specifies the identity used when the PSK (Pre-Shared Key) key-exchange mechanism is negotiated. |
| [pinned_client_pre_shared_identity_hint](#pinned_client_pre_shared_identity_hint-property-httpserver-struct) | A hint professed by the server to help the client select the PSK identity to use. |
| [pinned_client_public_key_bits](#pinned_client_public_key_bits-property-httpserver-struct) | The length of the public key. |
| [pinned_client_remote_address](#pinned_client_remote_address-property-httpserver-struct) | The client's IP address. |
| [pinned_client_remote_port](#pinned_client_remote_port-property-httpserver-struct) | The remote port of the client connection. |
| [pinned_client_resumed_session](#pinned_client_resumed_session-property-httpserver-struct) | Indicates whether a TLS-enabled connection was spawned from another TLS connection. |
| [pinned_client_secure_connection](#pinned_client_secure_connection-property-httpserver-struct) | Indicates whether TLS or SSL is enabled for this connection. |
| [pinned_client_server_authenticated](#pinned_client_server_authenticated-property-httpserver-struct) | Indicates whether server authentication was performed during a TLS-enabled connection. |
| [pinned_client_signature_algorithm](#pinned_client_signature_algorithm-property-httpserver-struct) | The signature algorithm used in a TLS handshake. |
| [pinned_client_symmetric_block_size](#pinned_client_symmetric_block_size-property-httpserver-struct) | The block size of the symmetric algorithm used. |
| [pinned_client_symmetric_key_bits](#pinned_client_symmetric_key_bits-property-httpserver-struct) | The key length of the symmetric algorithm used. |
| [pinned_client_total_bytes_received](#pinned_client_total_bytes_received-property-httpserver-struct) | The total number of bytes received over this connection. |
| [pinned_client_total_bytes_sent](#pinned_client_total_bytes_sent-property-httpserver-struct) | The total number of bytes sent over this connection. |
| [pinned_client_validation_log](#pinned_client_validation_log-property-httpserver-struct) | Contains the server certificate's chain validation log. |
| [pinned_client_version](#pinned_client_version-property-httpserver-struct) | Indicates the version of SSL/TLS protocol negotiated during this connection. |
| [pinned_client_cert_count](#pinned_client_cert_count-property-httpserver-struct) | The number of records in the PinnedClientCert arrays. |
| [pinned_client_cert_bytes](#pinned_client_cert_bytes-property-httpserver-struct) | Returns the raw certificate data in DER format. |
| [pinned_client_cert_ca_key_id](#pinned_client_cert_ca_key_id-property-httpserver-struct) | A unique identifier (fingerprint) of the CA certificate's cryptographic key. |
| [pinned_client_cert_fingerprint](#pinned_client_cert_fingerprint-property-httpserver-struct) | Contains the fingerprint (a hash imprint) of this certificate. |
| [pinned_client_cert_handle](#pinned_client_cert_handle-property-httpserver-struct) | Allows to get or set a 'handle', a unique identifier of the underlying property object. |
| [pinned_client_cert_issuer](#pinned_client_cert_issuer-property-httpserver-struct) | The common name of the certificate issuer (CA), typically a company name. |
| [pinned_client_cert_issuer_rdn](#pinned_client_cert_issuer_rdn-property-httpserver-struct) | A list of Property=Value pairs that uniquely identify the certificate issuer. |
| [pinned_client_cert_key_algorithm](#pinned_client_cert_key_algorithm-property-httpserver-struct) | Specifies the public key algorithm of this certificate. |
| [pinned_client_cert_key_bits](#pinned_client_cert_key_bits-property-httpserver-struct) | Returns the length of the public key in bits. |
| [pinned_client_cert_key_fingerprint](#pinned_client_cert_key_fingerprint-property-httpserver-struct) | Returns a SHA1 fingerprint of the public key contained in the certificate. |
| [pinned_client_cert_key_usage](#pinned_client_cert_key_usage-property-httpserver-struct) | Indicates the purposes of the key contained in the certificate, in the form of an OR'ed flag set. |
| [pinned_client_cert_public_key_bytes](#pinned_client_cert_public_key_bytes-property-httpserver-struct) | Contains the certificate's public key in DER format. |
| [pinned_client_cert_self_signed](#pinned_client_cert_self_signed-property-httpserver-struct) | Indicates whether the certificate is self-signed (root) or signed by an external CA. |
| [pinned_client_cert_serial_number](#pinned_client_cert_serial_number-property-httpserver-struct) | Returns the certificate's serial number. |
| [pinned_client_cert_sig_algorithm](#pinned_client_cert_sig_algorithm-property-httpserver-struct) | Indicates the algorithm that was used by the CA to sign this certificate. |
| [pinned_client_cert_subject](#pinned_client_cert_subject-property-httpserver-struct) | The common name of the certificate holder, typically an individual's name, a URL, an e-mail address, or a company name. |
| [pinned_client_cert_subject_key_id](#pinned_client_cert_subject_key_id-property-httpserver-struct) | Contains a unique identifier of the certificate's cryptographic key. |
| [pinned_client_cert_subject_rdn](#pinned_client_cert_subject_rdn-property-httpserver-struct) | A list of Property=Value pairs that uniquely identify the certificate holder (subject). |
| [pinned_client_cert_valid_from](#pinned_client_cert_valid_from-property-httpserver-struct) | The time point at which the certificate becomes valid, in UTC. |
| [pinned_client_cert_valid_to](#pinned_client_cert_valid_to-property-httpserver-struct) | The time point at which the certificate expires, in UTC. |
| [port](#port-property-httpserver-struct) | Specifies the port number to listen for connections on. |
| [port_range_from](#port_range_from-property-httpserver-struct) | Specifies the lower limit of the listening port range for incoming connections. |
| [port_range_to](#port_range_to-property-httpserver-struct) | Specifies the upper limit of the listening port range for incoming connections. |
| [session_timeout](#session_timeout-property-httpserver-struct) | Specifies the default session timeout value in milliseconds. |
| [socket_incoming_speed_limit](#socket_incoming_speed_limit-property-httpserver-struct) | The maximum number of bytes to read from the socket, per second. |
| [socket_local_address](#socket_local_address-property-httpserver-struct) | The local network interface to bind the socket to. |
| [socket_local_port](#socket_local_port-property-httpserver-struct) | The local port number to bind the socket to. |
| [socket_outgoing_speed_limit](#socket_outgoing_speed_limit-property-httpserver-struct) | The maximum number of bytes to write to the socket, per second. |
| [socket_timeout](#socket_timeout-property-httpserver-struct) | The maximum period of waiting, in milliseconds, after which the socket operation is considered unsuccessful. |
| [socket_use_ipv6](#socket_use_ipv6-property-httpserver-struct) | Enables or disables IP protocol version 6. |
| [tls_server_cert_count](#tls_server_cert_count-property-httpserver-struct) | The number of records in the TLSServerCert arrays. |
| [tls_server_cert_bytes](#tls_server_cert_bytes-property-httpserver-struct) | Returns the raw certificate data in DER format. |
| [tls_server_cert_handle](#tls_server_cert_handle-property-httpserver-struct) | Allows to get or set a 'handle', a unique identifier of the underlying property object. |
| [tls_auto_validate_certificates](#tls_auto_validate_certificates-property-httpserver-struct) | Specifies whether server-side TLS certificates should be validated automatically using internal validation rules. |
| [tls_base_configuration](#tls_base_configuration-property-httpserver-struct) | Selects the base configuration for the TLS settings. |
| [tls_ciphersuites](#tls_ciphersuites-property-httpserver-struct) | A list of ciphersuites separated with commas or semicolons. |
| [tls_client_auth](#tls_client_auth-property-httpserver-struct) | Enables or disables certificate-based client authentication. |
| [tls_extensions](#tls_extensions-property-httpserver-struct) | Provides access to TLS extensions. |
| [tls_force_resume_if_destination_changes](#tls_force_resume_if_destination_changes-property-httpserver-struct) | Whether to force TLS session resumption when the destination address changes. |
| [tls_groups](#tls_groups-property-httpserver-struct) | Specifies a list of key exchange groups to attempt during the TLS key exchange. |
| [tls_pre_shared_identity](#tls_pre_shared_identity-property-httpserver-struct) | Defines the identity used when the PSK (Pre-Shared Key) key-exchange mechanism is negotiated. |
| [tls_pre_shared_key](#tls_pre_shared_key-property-httpserver-struct) | Contains the pre-shared key for the PSK (Pre-Shared Key) key-exchange mechanism, encoded with base16. |
| [tls_pre_shared_key_ciphersuite](#tls_pre_shared_key_ciphersuite-property-httpserver-struct) | Defines the ciphersuite used for PSK (Pre-Shared Key) negotiation. |
| [tls_renegotiation_attack_prevention_mode](#tls_renegotiation_attack_prevention_mode-property-httpserver-struct) | Selects the renegotiation attack prevention mechanism. |
| [tls_revocation_check](#tls_revocation_check-property-httpserver-struct) | Specifies the kind(s) of revocation check to perform. |
| [tls_ssl_options](#tls_ssl_options-property-httpserver-struct) | Various SSL (TLS) protocol options, set of cssloExpectShutdownMessage 0x001 Wait for the close-notify message when shutting down the connection cssloOpenSSLDTLSWorkaround 0x002 (DEPRECATED) Use a DTLS version workaround when talking to very old OpenSSL versions cssloDisableKexLengthAlignment 0x004 Do not align the client-side PMS by the RSA modulus size. |
| [tls_mode](#tls_mode-property-httpserver-struct) | Specifies the TLS mode to use. |
| [tls_use_extended_master_secret](#tls_use_extended_master_secret-property-httpserver-struct) | Enables the Extended Master Secret Extension, as defined in RFC 7627. |
| [tls_use_session_resumption](#tls_use_session_resumption-property-httpserver-struct) | Enables or disables the TLS session resumption capability. |
| [tls_versions](#tls_versions-property-httpserver-struct) | The SSL/TLS versions to enable by default. |
| [use_chunked_transfer](#use_chunked_transfer-property-httpserver-struct) | Enables chunked transfer. |
| [use_compression](#use_compression-property-httpserver-struct) | Enables or disables server-side compression. |
| [user_count](#user_count-property-httpserver-struct) | The number of records in the User arrays. |
| [user_associated_data](#user_associated_data-property-httpserver-struct) | Contains the user's Associated Data when SSH AEAD (Authenticated Encryption with Associated Data) algorithm is used. |
| [user_base_path](#user_base_path-property-httpserver-struct) | Base path for this user in the server's file system. |
| [user_data](#user_data-property-httpserver-struct) | Contains uninterpreted user-defined data that should be associated with the user account, such as comments or custom settings. |
| [user_handle](#user_handle-property-httpserver-struct) | Allows to get or set a 'handle', a unique identifier of the underlying property object. |
| [user_hash_algorithm](#user_hash_algorithm-property-httpserver-struct) | Specifies the hash algorithm used to generate TOTP (Time-based One-Time Passwords) passwords for this user. |
| [user_incoming_speed_limit](#user_incoming_speed_limit-property-httpserver-struct) | Specifies the incoming speed limit for this user. |
| [user_outgoing_speed_limit](#user_outgoing_speed_limit-property-httpserver-struct) | Specifies the outgoing speed limit for this user. |
| [user_password](#user_password-property-httpserver-struct) | The user's authentication password. |
| [user_shared_secret](#user_shared_secret-property-httpserver-struct) | Contains the user's secret key, which is essentially a shared secret between the client and server. |
| [username](#username-property-httpserver-struct) | The registered name (login) of the user. |
| [website_name](#website_name-property-httpserver-struct) | Specifies the web site name to use in the certificate. |

## Method List

*The following is the full list of the methods of the struct with short descriptions. Click on the links for further details.*

|  |  |
| --- | --- |
| [cleanup](#cleanup-method-httpserver-struct) | Cleans up the server environment by purging expired sessions and cleaning caches. |
| [config](#config-method-httpserver-struct) | Sets or retrieves a configuration setting. |
| [do_action](#do_action-method-httpserver-struct) | Performs an additional action. |
| [drop_client](#drop_client-method-httpserver-struct) | Terminates a client connection. |
| [get_request_bytes](#get_request_bytes-method-httpserver-struct) | Returns the contents of the client's HTTP request. |
| [get_request_header](#get_request_header-method-httpserver-struct) | Returns a request header value. |
| [get_request_string](#get_request_string-method-httpserver-struct) | Returns the contents of the client's HTTP request. |
| [get_request_username](#get_request_username-method-httpserver-struct) | Returns the username for a connection. |
| [get_response_header](#get_response_header-method-httpserver-struct) | Returns a response header value. |
| [list_clients](#list_clients-method-httpserver-struct) | Enumerates the connected clients. |
| [pin_client](#pin_client-method-httpserver-struct) | Takes a snapshot of the connection's properties. |
| [process_generic_request](#process_generic_request-method-httpserver-struct) | Processes a generic HTTP request. |
| [reset](#reset-method-httpserver-struct) | Resets the struct settings. |
| [set_response_bytes](#set_response_bytes-method-httpserver-struct) | Sets a byte array to be served as a response. |
| [set_response_file](#set_response_file-method-httpserver-struct) | Sets a file to be served as a response. |
| [set_response_header](#set_response_header-method-httpserver-struct) | Sets a response header. |
| [set_response_status](#set_response_status-method-httpserver-struct) | Sets an HTTP status to be sent with the response. |
| [set_response_string](#set_response_string-method-httpserver-struct) | Sets a string to be served as a response. |
| [start](#start-method-httpserver-struct) | Starts the server. |
| [stop](#stop-method-httpserver-struct) | Stops the server. |

## Event List

*The following is the full list of the events fired by the struct with short descriptions. Click on the links for further details.*

|  |  |
| --- | --- |
| [on_accept](#on_accept-event-httpserver-struct) | Reports an incoming connection. |
| [on_auth_attempt](#on_auth_attempt-event-httpserver-struct) | Fires when a connected client makes an authentication attempt. |
| [on_connect](#on_connect-event-httpserver-struct) | Reports an accepted connection. |
| [on_custom_request](#on_custom_request-event-httpserver-struct) | Reports a request of a non-standard type (method). |
| [on_data](#on_data-event-httpserver-struct) | Supplies a data chunk received within a POST or PUT upload. |
| [on_delete_request](#on_delete_request-event-httpserver-struct) | Reports a DELETE request. |
| [on_disconnect](#on_disconnect-event-httpserver-struct) | Fires to report a disconnected client. |
| [on_error](#on_error-event-httpserver-struct) | Information about errors during data delivery. |
| [on_external_sign](#on_external_sign-event-httpserver-struct) | Handles remote or external signing initiated by the server protocol. |
| [on_file_error](#on_file_error-event-httpserver-struct) | Reports a file access error to the application. |
| [on_get_request](#on_get_request-event-httpserver-struct) | Reports a GET request. |
| [on_headers_prepared](#on_headers_prepared-event-httpserver-struct) | Fires when the response headers have been formed and are ready to be sent to the server. |
| [on_head_request](#on_head_request-event-httpserver-struct) | Reports a HEAD request. |
| [on_next_chunk](#on_next_chunk-event-httpserver-struct) | Fires to request a next chunk of multi-chunk data from the application. |
| [on_notification](#on_notification-event-httpserver-struct) | This event notifies the application about an underlying control flow event. |
| [on_options_request](#on_options_request-event-httpserver-struct) | Reports an OPTIONS request. |
| [on_patch_request](#on_patch_request-event-httpserver-struct) | Reports a PATCH request. |
| [on_post_request](#on_post_request-event-httpserver-struct) | Reports a POST request. |
| [on_put_request](#on_put_request-event-httpserver-struct) | Reports a PUT request. |
| [on_resource_access](#on_resource_access-event-httpserver-struct) | Reports an attempt to access a resource. |
| [on_tls_cert_validate](#on_tls_cert_validate-event-httpserver-struct) | Fires when a client certificate needs to be validated. |
| [on_tls_established](#on_tls_established-event-httpserver-struct) | Reports the setup of a TLS session. |
| [on_tls_handshake](#on_tls_handshake-event-httpserver-struct) | Fires when a newly established client connection initiates a TLS handshake. |
| [on_tls_psk](#on_tls_psk-event-httpserver-struct) | Requests a pre-shared key for TLS-PSK. |
| [on_tls_shutdown](#on_tls_shutdown-event-httpserver-struct) | Reports closure of a TLS session. |
| [on_trace_request](#on_trace_request-event-httpserver-struct) | Reports a TRACE request. |

## Config Settings

*The following is a list of config settings for the struct with short descriptions. Click on the links for further details.*

|  |  |
| --- | --- |
| [AllowKeepAlive](#AllowKeepAlive) | Enables or disables keep-alive mode. |
| [AllowOptionsResponseWithoutAuth](#AllowOptionsResponseWithoutAuth) | Enables unauthenticated responses to OPTIONS requests. |
| [AuthBasic](#AuthBasic) | Turns on/off the basic authentication. |
| [AuthDigest](#AuthDigest) | Turns on/off the digest authentication. |
| [AuthDigestExpire](#AuthDigestExpire) | Specifies digest expiration time for digest authentication. |
| [AuthRealm](#AuthRealm) | Specifies authentication realm for digest and NTLM authentication. |
| [BoundAddress](#BoundAddress) | Returns the bound address of the listening socket. |
| [BoundPort](#BoundPort) | The port that was bound by the server. |
| [CompressionLevel](#CompressionLevel) | The default compression level to use. |
| [DocumentRoot](#DocumentRoot) | The document root of the server. |
| [DualStack](#DualStack) | Allows the use of ip4 and ip6 simultaneously. |
| [HandshakeTimeout](#HandshakeTimeout) | The HTTPS handshake timeout. |
| [HomePage](#HomePage) | Specifies the home page resource name. |
| [Host](#Host) | The host to bind to. |
| [OAuthAllowAccessByDefault](#OAuthAllowAccessByDefault) | Specifies whether access to a resource is allowed by default. |
| [OAuthAutoValidateTokens](#OAuthAutoValidateTokens) | Allows to validate OAuth 2.0 access tokens automatically. |
| [OAuthIntrospectionClientID](#OAuthIntrospectionClientID) | Specifies a client ID on the authentication service. |
| [OAuthIntrospectionClientSecret](#OAuthIntrospectionClientSecret) | Specifies a client secret on the authentication service. |
| [OAuthIntrospectionURL](#OAuthIntrospectionURL) | Specifies the URL to be used to introspect access tokens. |
| [OAuthTokenValidationKeys](#OAuthTokenValidationKeys) | Specifies JW keys in JSON format for validating access token signatures. |
| [Port](#Port) | The port to listen on. |
| [PortRangeFrom](#PortRangeFrom) | The lower bound of allowed port scope to listen on. |
| [PortRangeTo](#PortRangeTo) | The higher bound of allowed port scope to listen on. |
| [PreSharedIdentityHint](#PreSharedIdentityHint) | Gets or sets the PSK identity hint. |
| [RequestFilter](#RequestFilter) | The request string modifier. |
| [SessionTimeout](#SessionTimeout) | The HTTP session timeout. |
| [SleepLen](#SleepLen) | Adjusts the server loop idling time. |
| [TempDir](#TempDir) | A temporary directory to use. |
| [TempPath](#TempPath) | Path for storing temporary files. |
| [TLSCiphersuites](#TLSCiphersuites) | Returns the list of ciphersuites activated in the struct for the current session. |
| [TLSExtensions](#TLSExtensions) | TBD. |
| [TLSGroups](#TLSGroups) | Returns the list of TLS key exchange groups enabled in the struct. |
| [TLSPeerExtensions](#TLSPeerExtensions) | TBD. |
| [TLSServerCertIndex](#TLSServerCertIndex) | Specifies the index of the server certificate to use. |
| [TLSVersions](#TLSVersions) | Returns the list of TLS versions enabled in the struct. |
| [UseChunkedTransfer](#UseChunkedTransfer) | Enables chunked transfer. |
| [UseCompression](#UseCompression) | Enables or disables server-side compression. |
| [WebsiteName](#WebsiteName) | The website name for the TLS certificate. |
| [ASN1UseGlobalTagCache](#ASN1UseGlobalTagCache) | Controls whether ASN.1 module should use a global object cache. |
| [AssignSystemSmartCardPins](#AssignSystemSmartCardPins) | Specifies whether CSP-level PINs should be assigned to CNG keys. |
| [CheckKeyIntegrityBeforeUse](#CheckKeyIntegrityBeforeUse) | Enables or disable private key integrity check before use. |
| [CookieCaching](#CookieCaching) | Specifies whether a cookie cache should be used for HTTP(S) transports. |
| [Cookies](#Cookies) | Gets or sets local cookies for the struct. |
| [DefDeriveKeyIterations](#DefDeriveKeyIterations) | Specifies the default key derivation algorithm iteration count. |
| [DNSLocalSuffix](#DNSLocalSuffix) | The suffix to assign for TLD names. |
| [EnableClientSideSSLFFDHE](#EnableClientSideSSLFFDHE) | Enables or disables finite field DHE key exchange support in TLS clients. |
| [EnableSSHMLKEM](#EnableSSHMLKEM) | Enables support for ML-KEM/hybrid key exchange algorithms in SSH client and server structs. |
| [EnableTLSMLKEM](#EnableTLSMLKEM) | Enables support for ML-KEM and hybrid groups in TLS client and server structs. |
| [GlobalCookies](#GlobalCookies) | Gets or sets global cookies for all the HTTP transports. |
| [HardwareCryptoUsePolicy](#HardwareCryptoUsePolicy) | The hardware crypto usage policy. |
| [HttpUserAgent](#HttpUserAgent) | Specifies the user agent name to be used by all HTTP clients. |
| [HttpVersion](#HttpVersion) | The HTTP version to use in any inner HTTP client structs created. |
| [IgnoreExpiredMSCTLSigningCert](#IgnoreExpiredMSCTLSigningCert) | Whether to tolerate the expired Windows Update signing certificate. |
| [ListDelimiter](#ListDelimiter) | The delimiter character for multi-element lists. |
| [LogDestination](#LogDestination) | Specifies the debug log destination. |
| [LogDetails](#LogDetails) | Specifies the debug log details to dump. |
| [LogFile](#LogFile) | Specifies the debug log filename. |
| [LogFilters](#LogFilters) | Specifies the debug log filters. |
| [LogFlushMode](#LogFlushMode) | Specifies the log flush mode. |
| [LogLevel](#LogLevel) | Specifies the debug log level. |
| [LogMaxEventCount](#LogMaxEventCount) | Specifies the maximum number of events to cache before further action is taken. |
| [LogRotationMode](#LogRotationMode) | Specifies the log rotation mode. |
| [MaxASN1BufferLength](#MaxASN1BufferLength) | Specifies the maximal allowed length for ASN.1 primitive tag data. |
| [MaxASN1TreeDepth](#MaxASN1TreeDepth) | Specifies the maximal depth for processed ASN.1 trees. |
| [OCSPHashAlgorithm](#OCSPHashAlgorithm) | Specifies the hash algorithm to be used to identify certificates in OCSP requests. |
| [OldClientSideRSAFallback](#OldClientSideRSAFallback) | Specifies whether the SSH client should use a SHA1 fallback. |
| [PKICache](#PKICache) | Specifies which PKI elements (certificates, CRLs, OCSP responses) should be cached. |
| [PKICachePath](#PKICachePath) | Specifies the file system path where cached PKI data is stored. |
| [ProductVersion](#ProductVersion) | Returns the version of the SecureBlackbox library. |
| [ServerSSLDHKeyLength](#ServerSSLDHKeyLength) | Sets the size of the TLS DHE key exchange group. |
| [StaticDNS](#StaticDNS) | Specifies whether static DNS rules should be used. |
| [StaticIPAddress\[domain\]](#StaticIPAddress[domain]) | Gets or sets an IP address for the specified domain name. |
| [StaticIPAddresses](#StaticIPAddresses) | Gets or sets all the static DNS rules. |
| [Tag](#Tag) | Allows to store any custom data. |
| [TLSSessionGroup](#TLSSessionGroup) | Specifies the group name of TLS sessions to be used for session resumption. |
| [TLSSessionLifetime](#TLSSessionLifetime) | Specifies lifetime in seconds of the cached TLS session. |
| [TLSSessionPurgeInterval](#TLSSessionPurgeInterval) | Specifies how often the session cache should remove the expired TLS sessions. |
| [UseCRLObjectCaching](#UseCRLObjectCaching) | Specifies whether reuse of loaded CRL objects is enabled. |
| [UseInternalRandom](#UseInternalRandom) | Switches between SecureBlackbox-own and platform PRNGs. |
| [UseLegacyAdESValidation](#UseLegacyAdESValidation) | Enables legacy AdES validation mode. |
| [UseOCSPResponseObjectCaching](#UseOCSPResponseObjectCaching) | Specifies whether reuse of loaded OCSP response objects is enabled. |
| [UseOwnDNSResolver](#UseOwnDNSResolver) | Specifies whether the client structs should use own DNS resolver. |
| [UseSharedSystemStorages](#UseSharedSystemStorages) | Specifies whether the validation engine should use a global per-process copy of the system certificate stores. |
| [UseSystemNativeSizeCalculation](#UseSystemNativeSizeCalculation) | An internal CryptoAPI access tweak. |
| [UseSystemOAEPAndPSS](#UseSystemOAEPAndPSS) | Enforces or disables the use of system-driven RSA OAEP and PSS computations. |
| [UseSystemRandom](#UseSystemRandom) | Enables or disables the use of the OS PRNG. |
| [XMLRDNDescriptorName\[OID\]](#XMLRDNDescriptorName[OID]) | Defines an OID mapping to descriptor names for the certificate's IssuerRDN or SubjectRDN. |
| [XMLRDNDescriptorPriority\[OID\]](#XMLRDNDescriptorPriority[OID]) | Specifies the priority of descriptor names associated with a specific OID. |
| [XMLRDNDescriptorReverseOrder](#XMLRDNDescriptorReverseOrder) | Specifies whether to reverse the order of descriptors in RDN. |
| [XMLRDNDescriptorSeparator](#XMLRDNDescriptorSeparator) | Specifies the separator used between descriptors in RDN. |

# active property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Indicates whether the server is active and is listening to new connections.

## Syntax

*Rust Syntax*

```text
fn active(&self ) -> Result<bool, SecureBlackboxError>
```

## Default Value

false

## Remarks

This read-only property returns True if the server is listening to incoming connections.

This property is read-only.

## Data Type

bool

# allow_custom_requests property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Allows custom requests.

## Syntax

*Rust Syntax*

```text
fn allow_custom_requests(&self ) -> Result<bool, SecureBlackboxError> fn set_allow_custom_requests(&self, value : bool) ->  Option<SecureBlackboxError>
```

## Default Value

false

## Remarks

Use this property to allow custom requests.

## Data Type

bool

# allow_keep_alive property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Enables or disables keep-alive mode.

## Syntax

*Rust Syntax*

```text
fn allow_keep_alive(&self ) -> Result<bool, SecureBlackboxError> fn set_allow_keep_alive(&self, value : bool) ->  Option<SecureBlackboxError>
```

## Default Value

true

## Remarks

Use this property to enable or disable the keep-alive connection mode. If keep-alive is enabled, clients that choose to use it may stay connected for a while.

## Data Type

bool

# auth_realm property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Specifies authentication realm for digest and NTLM authentication.

## Syntax

*Rust Syntax*

```text
fn auth_realm(&self ) -> Result<String, SecureBlackboxError> fn set_auth_realm(&self, value : &str) ->  Option<SecureBlackboxError>
fn set_auth_realm_ref(&self, value : &String) ->  Option<SecureBlackboxError>
```

## Default Value

"SecureBlackbox"

## Remarks

Specifies authentication realm for digest and NTLM authentication types.

## Data Type

String

# auth_types property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Defines allowed HTTP authentication types.

## Syntax

*Rust Syntax*

```text
fn auth_types(&self ) -> Result<i32, SecureBlackboxError> fn set_auth_types(&self, value : i32) ->  Option<SecureBlackboxError>
```

## Default Value

0

## Remarks

Use this property to define which authentication types the component should support or attempt to use by enabling the relevant bitmask flags:

|  |  |  |
| --- | --- | --- |
| haBasic | 0x01 | Basic authentication |
| haDigest | 0x02 | Digest authentication (RFC 2617) |
| haNTLM | 0x04 | Windows NTLM authentication |
| haKerberos | 0x08 | Kerberos (Negotiate) authentication |
| haOAuth2 | 0x10 | OAuth2 authentication |

## Data Type

i32

# bound_port property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Indicates the bound listening port.

## Syntax

*Rust Syntax*

```text
fn bound_port(&self ) -> Result<i32, SecureBlackboxError>
```

## Default Value

0

## Remarks

Check this property to find out the port that has been allocated to the server by the system. The bound port always equals [port](#port-property-httpserver-struct) if it is provided, or is allocated dynamically if configured to fall in the range between [port_range_from](#port_range_from-property-httpserver-struct) and [port_range_to](#port_range_to-property-httpserver-struct) constraints.

This property is read-only.

## Data Type

i32

# compression_level property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

The default compression level to use.

## Syntax

*Rust Syntax*

```text
fn compression_level(&self ) -> Result<i32, SecureBlackboxError> fn set_compression_level(&self, value : i32) ->  Option<SecureBlackboxError>
```

## Default Value

6

## Remarks

Assign this property with the compression level (1 to 9) to apply for gzipped responses. 1 stands for the lightest but fastest compression, and 9 for the best but the slowest.

## Data Type

i32

# document_root property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

The document root of the server.

## Syntax

*Rust Syntax*

```text
fn document_root(&self ) -> Result<String, SecureBlackboxError> fn set_document_root(&self, value : &str) ->  Option<SecureBlackboxError>
fn set_document_root_ref(&self, value : &String) ->  Option<SecureBlackboxError>
```

## Default Value

""

## Remarks

Use this property to specify a local folder which is going to be the server's document root (the mount point of the virtual home directory).

## Data Type

String

# external_crypto_async_document_id property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Specifies an optional document ID for SignAsyncBegin() and SignAsyncEnd() calls.

## Syntax

*Rust Syntax*

```text
fn external_crypto_async_document_id(&self ) -> Result<String, SecureBlackboxError> fn set_external_crypto_async_document_id(&self, value : &str) ->  Option<SecureBlackboxError>
fn set_external_crypto_async_document_id_ref(&self, value : &String) ->  Option<SecureBlackboxError>
```

## Default Value

""

## Remarks

Specifies an optional document ID for SignAsyncBegin() and SignAsyncEnd() calls.

Use this property when working with multi-signature DCAuth requests and responses to uniquely identify documents signed within a larger batch. On the completion stage, this value helps the signing component identify the correct signature in the returned batch of responses.

If using batched requests, make sure to set this property to the same value on both the pre-signing (SignAsyncBegin) and completion (SignAsyncEnd) stages.

## Data Type

String

# external_crypto_custom_params property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Custom parameters to be passed to the signing service (uninterpreted).

## Syntax

*Rust Syntax*

```text
fn external_crypto_custom_params(&self ) -> Result<String, SecureBlackboxError> fn set_external_crypto_custom_params(&self, value : &str) ->  Option<SecureBlackboxError>
fn set_external_crypto_custom_params_ref(&self, value : &String) ->  Option<SecureBlackboxError>
```

## Default Value

""

## Remarks

Custom parameters to be passed to the signing service (uninterpreted).

## Data Type

String

# external_crypto_data property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Additional data to be included in the async state and mirrored back by the requestor.

## Syntax

*Rust Syntax*

```text
fn external_crypto_data(&self ) -> Result<String, SecureBlackboxError> fn set_external_crypto_data(&self, value : &str) ->  Option<SecureBlackboxError>
fn set_external_crypto_data_ref(&self, value : &String) ->  Option<SecureBlackboxError>
```

## Default Value

""

## Remarks

Additional data to be included in the async state and mirrored back by the requestor.

## Data Type

String

# external_crypto_external_hash_calculation property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Specifies whether the message hash is to be calculated at the external endpoint.

## Syntax

*Rust Syntax*

```text
fn external_crypto_external_hash_calculation(&self ) -> Result<bool, SecureBlackboxError> fn set_external_crypto_external_hash_calculation(&self, value : bool) ->  Option<SecureBlackboxError>
```

## Default Value

false

## Remarks

Specifies whether the message hash is to be calculated at the external endpoint. Please note that this mode is not supported by the DCAuth struct.

If set to true, the struct will pass a few kilobytes of to-be-signed data from the document to the OnExternalSign event. This only applies when SignExternal() is called.

## Data Type

bool

# external_crypto_hash_algorithm property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Specifies the request's signature hash algorithm.

## Syntax

*Rust Syntax*

```text
fn external_crypto_hash_algorithm(&self ) -> Result<String, SecureBlackboxError> fn set_external_crypto_hash_algorithm(&self, value : &str) ->  Option<SecureBlackboxError>
fn set_external_crypto_hash_algorithm_ref(&self, value : &String) ->  Option<SecureBlackboxError>
```

## Default Value

"SHA256"

## Remarks

Specifies the request's signature hash algorithm.

|  |  |  |
| --- | --- | --- |
| SB_HASH_ALGORITHM_SHA1 | SHA1 |  |
| SB_HASH_ALGORITHM_SHA224 | SHA224 |  |
| SB_HASH_ALGORITHM_SHA256 | SHA256 |  |
| SB_HASH_ALGORITHM_SHA384 | SHA384 |  |
| SB_HASH_ALGORITHM_SHA512 | SHA512 |  |
| SB_HASH_ALGORITHM_MD2 | MD2 |  |
| SB_HASH_ALGORITHM_MD4 | MD4 |  |
| SB_HASH_ALGORITHM_MD5 | MD5 |  |
| SB_HASH_ALGORITHM_RIPEMD160 | RIPEMD160 |  |
| SB_HASH_ALGORITHM_CRC32 | CRC32 |  |
| SB_HASH_ALGORITHM_SSL3 | SSL3 |  |
| SB_HASH_ALGORITHM_GOST_R3411_1994 | GOST1994 |  |
| SB_HASH_ALGORITHM_WHIRLPOOL | WHIRLPOOL |  |
| SB_HASH_ALGORITHM_POLY1305 | POLY1305 |  |
| SB_HASH_ALGORITHM_SHA3_224 | SHA3_224 |  |
| SB_HASH_ALGORITHM_SHA3_256 | SHA3_256 |  |
| SB_HASH_ALGORITHM_SHA3_384 | SHA3_384 |  |
| SB_HASH_ALGORITHM_SHA3_512 | SHA3_512 |  |
| SB_HASH_ALGORITHM_BLAKE2S_128 | BLAKE2S_128 |  |
| SB_HASH_ALGORITHM_BLAKE2S_160 | BLAKE2S_160 |  |
| SB_HASH_ALGORITHM_BLAKE2S_224 | BLAKE2S_224 |  |
| SB_HASH_ALGORITHM_BLAKE2S_256 | BLAKE2S_256 |  |
| SB_HASH_ALGORITHM_BLAKE2B_160 | BLAKE2B_160 |  |
| SB_HASH_ALGORITHM_BLAKE2B_256 | BLAKE2B_256 |  |
| SB_HASH_ALGORITHM_BLAKE2B_384 | BLAKE2B_384 |  |
| SB_HASH_ALGORITHM_BLAKE2B_512 | BLAKE2B_512 |  |
| SB_HASH_ALGORITHM_SHAKE_128 | SHAKE_128 |  |
| SB_HASH_ALGORITHM_SHAKE_256 | SHAKE_256 |  |
| SB_HASH_ALGORITHM_SHAKE_128_LEN | SHAKE_128_LEN |  |
| SB_HASH_ALGORITHM_SHAKE_256_LEN | SHAKE_256_LEN |  |

## Data Type

String

# external_crypto_key_id property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

The ID of the pre-shared key used for DC request authentication.

## Syntax

*Rust Syntax*

```text
fn external_crypto_key_id(&self ) -> Result<String, SecureBlackboxError> fn set_external_crypto_key_id(&self, value : &str) ->  Option<SecureBlackboxError>
fn set_external_crypto_key_id_ref(&self, value : &String) ->  Option<SecureBlackboxError>
```

## Default Value

""

## Remarks

The ID of the pre-shared key used for DC request authentication.

Asynchronous DCAuth-driven communication requires that parties authenticate each other with a secret pre-shared cryptographic key. This provides an extra protection layer for the protocol and diminishes the risk of the private key becoming abused by foreign parties. Use this property to provide the pre-shared key identifier, and use [external_crypto_key_secret](#external_crypto_key_secret-property-httpserver-struct) to pass the key itself.

The same KeyID/KeySecret pair should be used on the DCAuth side for the signing requests to be accepted.

Note: The KeyID/KeySecret scheme is very similar to the AuthKey scheme used in various Cloud service providers to authenticate users.

Example:

```text
  signer.ExternalCrypto.KeyID = "MainSigningKey";
  signer.ExternalCrypto.KeySecret = "abcdef0123456789";
```

## Data Type

String

# external_crypto_key_secret property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

The pre-shared key used for DC request authentication.

## Syntax

*Rust Syntax*

```text
fn external_crypto_key_secret(&self ) -> Result<String, SecureBlackboxError> fn set_external_crypto_key_secret(&self, value : &str) ->  Option<SecureBlackboxError>
fn set_external_crypto_key_secret_ref(&self, value : &String) ->  Option<SecureBlackboxError>
```

## Default Value

""

## Remarks

The pre-shared key used for DC request authentication. This key must be set and match the key used by the DCAuth counterpart for the scheme to work.

Read more about configuring authentication in the [external_crypto_key_id](#external_crypto_key_id-property-httpserver-struct) topic.

## Data Type

String

# external_crypto_method property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Specifies the asynchronous signing method.

## Syntax

*Rust Syntax*

```text
fn external_crypto_method(&self ) -> Result<i32, SecureBlackboxError> fn set_external_crypto_method(&self, value : i32) ->  Option<SecureBlackboxError>
```

## Possible Values

```text
0   // PKCS11   // PKCS7
```

## Default Value

0

## Remarks

Specifies the asynchronous signing method. This is typically defined by the DC server capabilities and setup.

Available options:

|  |  |
| --- | --- |
| asmdPKCS1 | 0 |
| asmdPKCS7 | 1 |

## Data Type

i32

# external_crypto_mode property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Specifies the external cryptography mode.

## Syntax

*Rust Syntax*

```text
fn external_crypto_mode(&self ) -> Result<i32, SecureBlackboxError> fn set_external_crypto_mode(&self, value : i32) ->  Option<SecureBlackboxError>
```

## Possible Values

```text
0   // Default1   // Disabled2   // Generic3   // DCAuth4   // DCAuthJSON
```

## Default Value

0

## Remarks

Specifies the external cryptography mode.

Available options:

|  |  |
| --- | --- |
| ecmDefault | The default value (0) |
| ecmDisabled | Do not use DC or external signing (1) |
| ecmGeneric | Generic external signing with the OnExternalSign event (2) |
| ecmDCAuth | DCAuth signing (3) |
| ecmDCAuthJSON | DCAuth signing in JSON format (4) |

## Data Type

i32

# external_crypto_public_key_algorithm property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Provide the public key algorithm here if the certificate is not available on the pre-signing stage.

## Syntax

*Rust Syntax*

```text
fn external_crypto_public_key_algorithm(&self ) -> Result<String, SecureBlackboxError> fn set_external_crypto_public_key_algorithm(&self, value : &str) ->  Option<SecureBlackboxError>
fn set_external_crypto_public_key_algorithm_ref(&self, value : &String) ->  Option<SecureBlackboxError>
```

## Default Value

""

## Remarks

Provide the public key algorithm here if the certificate is not available on the pre-signing stage.

|  |  |  |
| --- | --- | --- |
| SB_CERT_ALGORITHM_ID_RSA_ENCRYPTION | rsaEncryption |  |
| SB_CERT_ALGORITHM_MD2_RSA_ENCRYPTION | md2withRSAEncryption |  |
| SB_CERT_ALGORITHM_MD5_RSA_ENCRYPTION | md5withRSAEncryption |  |
| SB_CERT_ALGORITHM_SHA1_RSA_ENCRYPTION | sha1withRSAEncryption |  |
| SB_CERT_ALGORITHM_ID_DSA | id-dsa |  |
| SB_CERT_ALGORITHM_ID_DSA_SHA1 | id-dsa-with-sha1 |  |
| SB_CERT_ALGORITHM_DH_PUBLIC | dhpublicnumber |  |
| SB_CERT_ALGORITHM_SHA224_RSA_ENCRYPTION | sha224WithRSAEncryption |  |
| SB_CERT_ALGORITHM_SHA256_RSA_ENCRYPTION | sha256WithRSAEncryption |  |
| SB_CERT_ALGORITHM_SHA384_RSA_ENCRYPTION | sha384WithRSAEncryption |  |
| SB_CERT_ALGORITHM_SHA512_RSA_ENCRYPTION | sha512WithRSAEncryption |  |
| SB_CERT_ALGORITHM_ID_RSAPSS | id-RSASSA-PSS |  |
| SB_CERT_ALGORITHM_ID_RSAOAEP | id-RSAES-OAEP |  |
| SB_CERT_ALGORITHM_RSASIGNATURE_RIPEMD160 | ripemd160withRSA |  |
| SB_CERT_ALGORITHM_ID_ELGAMAL | elGamal |  |
| SB_CERT_ALGORITHM_SHA1_ECDSA | ecdsa-with-SHA1 |  |
| SB_CERT_ALGORITHM_RECOMMENDED_ECDSA | ecdsa-recommended |  |
| SB_CERT_ALGORITHM_SHA224_ECDSA | ecdsa-with-SHA224 |  |
| SB_CERT_ALGORITHM_SHA256_ECDSA | ecdsa-with-SHA256 |  |
| SB_CERT_ALGORITHM_SHA384_ECDSA | ecdsa-with-SHA384 |  |
| SB_CERT_ALGORITHM_SHA512_ECDSA | ecdsa-with-SHA512 |  |
| SB_CERT_ALGORITHM_EC | id-ecPublicKey |  |
| SB_CERT_ALGORITHM_SPECIFIED_ECDSA | ecdsa-specified |  |
| SB_CERT_ALGORITHM_GOST_R3410_1994 | id-GostR3410-94 |  |
| SB_CERT_ALGORITHM_GOST_R3410_2001 | id-GostR3410-2001 |  |
| SB_CERT_ALGORITHM_GOST_R3411_WITH_R3410_1994 | id-GostR3411-94-with-GostR3410-94 |  |
| SB_CERT_ALGORITHM_GOST_R3411_WITH_R3410_2001 | id-GostR3411-94-with-GostR3410-2001 |  |
| SB_CERT_ALGORITHM_SHA1_ECDSA_PLAIN | ecdsa-plain-SHA1 |  |
| SB_CERT_ALGORITHM_SHA224_ECDSA_PLAIN | ecdsa-plain-SHA224 |  |
| SB_CERT_ALGORITHM_SHA256_ECDSA_PLAIN | ecdsa-plain-SHA256 |  |
| SB_CERT_ALGORITHM_SHA384_ECDSA_PLAIN | ecdsa-plain-SHA384 |  |
| SB_CERT_ALGORITHM_SHA512_ECDSA_PLAIN | ecdsa-plain-SHA512 |  |
| SB_CERT_ALGORITHM_RIPEMD160_ECDSA_PLAIN | ecdsa-plain-RIPEMD160 |  |
| SB_CERT_ALGORITHM_WHIRLPOOL_RSA_ENCRYPTION | whirlpoolWithRSAEncryption |  |
| SB_CERT_ALGORITHM_ID_DSA_SHA224 | id-dsa-with-sha224 |  |
| SB_CERT_ALGORITHM_ID_DSA_SHA256 | id-dsa-with-sha256 |  |
| SB_CERT_ALGORITHM_SHA3_224_RSA_ENCRYPTION | id-rsassa-pkcs1-v1_5-with-sha3-224 |  |
| SB_CERT_ALGORITHM_SHA3_256_RSA_ENCRYPTION | id-rsassa-pkcs1-v1_5-with-sha3-256 |  |
| SB_CERT_ALGORITHM_SHA3_384_RSA_ENCRYPTION | id-rsassa-pkcs1-v1_5-with-sha3-384 |  |
| SB_CERT_ALGORITHM_SHA3_512_RSA_ENCRYPTION | id-rsassa-pkcs1-v1_5-with-sha3-512 |  |
| SB_CERT_ALGORITHM_SHA3_224_ECDSA | id-ecdsa-with-sha3-224 |  |
| SB_CERT_ALGORITHM_SHA3_256_ECDSA | id-ecdsa-with-sha3-256 |  |
| SB_CERT_ALGORITHM_SHA3_384_ECDSA | id-ecdsa-with-sha3-384 |  |
| SB_CERT_ALGORITHM_SHA3_512_ECDSA | id-ecdsa-with-sha3-512 |  |
| SB_CERT_ALGORITHM_SHA3_224_ECDSA_PLAIN | id-ecdsa-plain-with-sha3-224 |  |
| SB_CERT_ALGORITHM_SHA3_256_ECDSA_PLAIN | id-ecdsa-plain-with-sha3-256 |  |
| SB_CERT_ALGORITHM_SHA3_384_ECDSA_PLAIN | id-ecdsa-plain-with-sha3-384 |  |
| SB_CERT_ALGORITHM_SHA3_512_ECDSA_PLAIN | id-ecdsa-plain-with-sha3-512 |  |
| SB_CERT_ALGORITHM_ID_DSA_SHA3_224 | id-dsa-with-sha3-224 |  |
| SB_CERT_ALGORITHM_ID_DSA_SHA3_256 | id-dsa-with-sha3-256 |  |
| SB_CERT_ALGORITHM_BLAKE2S_128_RSA_ENCRYPTION | id-rsassa-pkcs1-v1_5-with-blake2s128 |  |
| SB_CERT_ALGORITHM_BLAKE2S_160_RSA_ENCRYPTION | id-rsassa-pkcs1-v1_5-with-blake2s160 |  |
| SB_CERT_ALGORITHM_BLAKE2S_224_RSA_ENCRYPTION | id-rsassa-pkcs1-v1_5-with-blake2s224 |  |
| SB_CERT_ALGORITHM_BLAKE2S_256_RSA_ENCRYPTION | id-rsassa-pkcs1-v1_5-with-blake2s256 |  |
| SB_CERT_ALGORITHM_BLAKE2B_160_RSA_ENCRYPTION | id-rsassa-pkcs1-v1_5-with-blake2b160 |  |
| SB_CERT_ALGORITHM_BLAKE2B_256_RSA_ENCRYPTION | id-rsassa-pkcs1-v1_5-with-blake2b256 |  |
| SB_CERT_ALGORITHM_BLAKE2B_384_RSA_ENCRYPTION | id-rsassa-pkcs1-v1_5-with-blake2b384 |  |
| SB_CERT_ALGORITHM_BLAKE2B_512_RSA_ENCRYPTION | id-rsassa-pkcs1-v1_5-with-blake2b512 |  |
| SB_CERT_ALGORITHM_BLAKE2S_128_ECDSA | id-ecdsa-with-blake2s128 |  |
| SB_CERT_ALGORITHM_BLAKE2S_160_ECDSA | id-ecdsa-with-blake2s160 |  |
| SB_CERT_ALGORITHM_BLAKE2S_224_ECDSA | id-ecdsa-with-blake2s224 |  |
| SB_CERT_ALGORITHM_BLAKE2S_256_ECDSA | id-ecdsa-with-blake2s256 |  |
| SB_CERT_ALGORITHM_BLAKE2B_160_ECDSA | id-ecdsa-with-blake2b160 |  |
| SB_CERT_ALGORITHM_BLAKE2B_256_ECDSA | id-ecdsa-with-blake2b256 |  |
| SB_CERT_ALGORITHM_BLAKE2B_384_ECDSA | id-ecdsa-with-blake2b384 |  |
| SB_CERT_ALGORITHM_BLAKE2B_512_ECDSA | id-ecdsa-with-blake2b512 |  |
| SB_CERT_ALGORITHM_BLAKE2S_128_ECDSA_PLAIN | id-ecdsa-plain-with-blake2s128 |  |
| SB_CERT_ALGORITHM_BLAKE2S_160_ECDSA_PLAIN | id-ecdsa-plain-with-blake2s160 |  |
| SB_CERT_ALGORITHM_BLAKE2S_224_ECDSA_PLAIN | id-ecdsa-plain-with-blake2s224 |  |
| SB_CERT_ALGORITHM_BLAKE2S_256_ECDSA_PLAIN | id-ecdsa-plain-with-blake2s256 |  |
| SB_CERT_ALGORITHM_BLAKE2B_160_ECDSA_PLAIN | id-ecdsa-plain-with-blake2b160 |  |
| SB_CERT_ALGORITHM_BLAKE2B_256_ECDSA_PLAIN | id-ecdsa-plain-with-blake2b256 |  |
| SB_CERT_ALGORITHM_BLAKE2B_384_ECDSA_PLAIN | id-ecdsa-plain-with-blake2b384 |  |
| SB_CERT_ALGORITHM_BLAKE2B_512_ECDSA_PLAIN | id-ecdsa-plain-with-blake2b512 |  |
| SB_CERT_ALGORITHM_ID_DSA_BLAKE2S_224 | id-dsa-with-blake2s224 |  |
| SB_CERT_ALGORITHM_ID_DSA_BLAKE2S_256 | id-dsa-with-blake2s256 |  |
| SB_CERT_ALGORITHM_EDDSA_ED25519 | id-Ed25519 |  |
| SB_CERT_ALGORITHM_EDDSA_ED448 | id-Ed448 |  |
| SB_CERT_ALGORITHM_EDDSA_ED25519_PH | id-Ed25519ph |  |
| SB_CERT_ALGORITHM_EDDSA_ED448_PH | id-Ed448ph |  |
| SB_CERT_ALGORITHM_EDDSA | id-EdDSA |  |
| SB_CERT_ALGORITHM_EDDSA_SIGNATURE | id-EdDSA-sig |  |
| SB_CERT_ALGORITHM_MLDSA_44 | id-ml-dsa-44 |  |
| SB_CERT_ALGORITHM_MLDSA_65 | id-ml-dsa-65 |  |
| SB_CERT_ALGORITHM_MLDSA_87 | id-ml-dsa-87 |  |
| SB_CERT_ALGORITHM_HASH_MLDSA_44_SHA512 | id-hash-ml-dsa-44-with-sha512 |  |
| SB_CERT_ALGORITHM_HASH_MLDSA_65_SHA512 | id-hash-ml-dsa-65-with-sha512 |  |
| SB_CERT_ALGORITHM_HASH_MLDSA_87_SHA512 | id-hash-ml-dsa-87-with-sha512 |  |
| SB_CERT_ALGORITHM_MLKEM_512 | id-ml-kem-512 |  |
| SB_CERT_ALGORITHM_MLKEM_768 | id-ml-kem-768 |  |
| SB_CERT_ALGORITHM_MLKEM_1024 | id-ml-kem-1024 |  |

## Data Type

String

# fips_mode property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Reserved.

## Syntax

*Rust Syntax*

```text
fn fips_mode(&self ) -> Result<bool, SecureBlackboxError> fn set_fips_mode(&self, value : bool) ->  Option<SecureBlackboxError>
```

## Default Value

false

## Remarks

This property is reserved for future use.

## Data Type

bool

# handshake_timeout property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Specifies the handshake timeout in milliseconds.

## Syntax

*Rust Syntax*

```text
fn handshake_timeout(&self ) -> Result<i32, SecureBlackboxError> fn set_handshake_timeout(&self, value : i32) ->  Option<SecureBlackboxError>
```

## Default Value

20000

## Remarks

Use this property to set the TLS handshake timeout.

## Data Type

i32

# host property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

The host to bind the listening port to.

## Syntax

*Rust Syntax*

```text
fn host(&self ) -> Result<String, SecureBlackboxError> fn set_host(&self, value : &str) ->  Option<SecureBlackboxError>
fn set_host_ref(&self, value : &String) ->  Option<SecureBlackboxError>
```

## Default Value

""

## Remarks

Use this property to specify the IP address on which to listen to incoming connections.

## Data Type

String

# pinned_client_aead_cipher property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Indicates whether the encryption algorithm used is an AEAD cipher.

## Syntax

*Rust Syntax*

```text
fn pinned_client_aead_cipher(&self ) -> Result<bool, SecureBlackboxError>
```

## Default Value

false

## Remarks

Indicates whether the encryption algorithm used is an AEAD cipher.

This property is read-only.

## Data Type

bool

# pinned_client_chain_validation_details property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

The details of a certificate chain validation outcome.

## Syntax

*Rust Syntax*

```text
fn pinned_client_chain_validation_details(&self ) -> Result<i32, SecureBlackboxError>
```

## Default Value

0

## Remarks

The details of a certificate chain validation outcome. They may often suggest the reasons that contributed to the overall validation result.

Returns a bit mask of the following options:

|  |  |  |
| --- | --- | --- |
| cvrBadData | 0x0001 | One or more certificates in the validation path are malformed |
| cvrRevoked | 0x0002 | One or more certificates are revoked |
| cvrNotYetValid | 0x0004 | One or more certificates are not yet valid |
| cvrExpired | 0x0008 | One or more certificates are expired |
| cvrInvalidSignature | 0x0010 | A certificate contains a non-valid digital signature |
| cvrUnknownCA | 0x0020 | A CA certificate for one or more certificates has not been found (chain incomplete) |
| cvrCAUnauthorized | 0x0040 | One of the CA certificates are not authorized to act as CA |
| cvrCRLNotVerified | 0x0080 | One or more CRLs could not be verified |
| cvrOCSPNotVerified | 0x0100 | One or more OCSP responses could not be verified |
| cvrIdentityMismatch | 0x0200 | The identity protected by the certificate (a TLS endpoint or an e-mail addressee) does not match what is recorded in the certificate |
| cvrNoKeyUsage | 0x0400 | A mandatory key usage is not enabled in one of the chain certificates |
| cvrBlocked | 0x0800 | One or more certificates are blocked |
| cvrFailure | 0x1000 | General validation failure |
| cvrChainLoop | 0x2000 | Chain loop: one of the CA certificates recursively signs itself |
| cvrWeakAlgorithm | 0x4000 | A weak algorithm is used in one of certificates or revocation elements |
| cvrUserEnforced | 0x8000 | The chain was considered invalid following intervention from a user code |

This property is read-only.

## Data Type

i32

# pinned_client_chain_validation_result property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

The outcome of a certificate chain validation routine.

## Syntax

*Rust Syntax*

```text
fn pinned_client_chain_validation_result(&self ) -> Result<i32, SecureBlackboxError>
```

## Possible Values

```text
0   // Valid1   // ValidButUntrusted2   // Invalid3   // CantBeEstablished
```

## Default Value

0

## Remarks

The outcome of a certificate chain validation routine.

Available options:

|  |  |  |
| --- | --- | --- |
| cvtValid | 0 | The chain is valid |
| cvtValidButUntrusted | 1 | The chain is valid, but the root certificate is not trusted |
| cvtInvalid | 2 | The chain is not valid (some of certificates are revoked, expired, or contain an invalid signature) |
| cvtCantBeEstablished | 3 | The validity of the chain cannot be established because of missing or unavailable validation information (certificates, CRLs, or OCSP responses) |

Use the ValidationLog property to access the detailed validation log.

This property is read-only.

## Data Type

i32

# pinned_client_ciphersuite property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

The cipher suite employed by this connection.

## Syntax

*Rust Syntax*

```text
fn pinned_client_ciphersuite(&self ) -> Result<String, SecureBlackboxError>
```

## Default Value

""

## Remarks

The cipher suite employed by this connection.

For TLS connections, this property returns the ciphersuite that was/is employed by the connection.

This property is read-only.

## Data Type

String

# pinned_client_client_authenticated property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Specifies whether client authentication was performed during this connection.

## Syntax

*Rust Syntax*

```text
fn pinned_client_client_authenticated(&self ) -> Result<bool, SecureBlackboxError>
```

## Default Value

false

## Remarks

Specifies whether client authentication was performed during this connection.

This property is read-only.

## Data Type

bool

# pinned_client_client_auth_requested property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Specifies whether client authentication was requested during this connection.

## Syntax

*Rust Syntax*

```text
fn pinned_client_client_auth_requested(&self ) -> Result<bool, SecureBlackboxError>
```

## Default Value

false

## Remarks

Specifies whether client authentication was requested during this connection.

This property is read-only.

## Data Type

bool

# pinned_client_connection_established property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Indicates whether the connection has been established fully.

## Syntax

*Rust Syntax*

```text
fn pinned_client_connection_established(&self ) -> Result<bool, SecureBlackboxError>
```

## Default Value

false

## Remarks

Indicates whether the connection has been established fully.

This property is read-only.

## Data Type

bool

# pinned_client_connection_id property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

The unique identifier assigned to this connection.

## Syntax

*Rust Syntax*

```text
fn pinned_client_connection_id(&self ) -> Result<Vec<u8>, SecureBlackboxError>
```

## Remarks

The unique identifier assigned to this connection.

This property is read-only.

## Data Type

Vec

# pinned_client_digest_algorithm property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

The digest algorithm used in a TLS-enabled connection.

## Syntax

*Rust Syntax*

```text
fn pinned_client_digest_algorithm(&self ) -> Result<String, SecureBlackboxError>
```

## Default Value

""

## Remarks

The digest algorithm used in a TLS-enabled connection.

This property is read-only.

## Data Type

String

# pinned_client_encryption_algorithm property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

The symmetric encryption algorithm used in a TLS-enabled connection.

## Syntax

*Rust Syntax*

```text
fn pinned_client_encryption_algorithm(&self ) -> Result<String, SecureBlackboxError>
```

## Default Value

""

## Remarks

The symmetric encryption algorithm used in a TLS-enabled connection.

This property is read-only.

## Data Type

String

# pinned_client_exportable property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Indicates whether a TLS connection uses a reduced-strength exportable cipher.

## Syntax

*Rust Syntax*

```text
fn pinned_client_exportable(&self ) -> Result<bool, SecureBlackboxError>
```

## Default Value

false

## Remarks

Indicates whether a TLS connection uses a reduced-strength exportable cipher.

This property is read-only.

## Data Type

bool

# pinned_client_group property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

The elliptic curve used in this connection.

## Syntax

*Rust Syntax*

```text
fn pinned_client_group(&self ) -> Result<String, SecureBlackboxError>
```

## Default Value

""

## Remarks

The elliptic curve used in this connection.

This property was named *NamedECCurve* in SecureBlackbox 2024 and earlier versions.

This property is read-only.

## Data Type

String

# pinned_client_id property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

The client connection's unique identifier.

## Syntax

*Rust Syntax*

```text
fn pinned_client_id(&self ) -> Result<i64, SecureBlackboxError>
```

## Default Value

-1

## Remarks

The client connection's unique identifier. This value is used throughout to refer to a particular client connection.

This property is read-only.

## Data Type

i64

# pinned_client_key_exchange_algorithm property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

The key exchange algorithm used in a TLS-enabled connection.

## Syntax

*Rust Syntax*

```text
fn pinned_client_key_exchange_algorithm(&self ) -> Result<String, SecureBlackboxError>
```

## Default Value

""

## Remarks

The key exchange algorithm used in a TLS-enabled connection.

This property is read-only.

## Data Type

String

# pinned_client_key_exchange_key_bits property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

The length of the key exchange key of a TLS-enabled connection.

## Syntax

*Rust Syntax*

```text
fn pinned_client_key_exchange_key_bits(&self ) -> Result<i32, SecureBlackboxError>
```

## Default Value

0

## Remarks

The length of the key exchange key of a TLS-enabled connection.

This property is read-only.

## Data Type

i32

# pinned_client_pfs_cipher property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Indicates whether the chosen ciphersuite provides perfect forward secrecy (PFS).

## Syntax

*Rust Syntax*

```text
fn pinned_client_pfs_cipher(&self ) -> Result<bool, SecureBlackboxError>
```

## Default Value

false

## Remarks

Indicates whether the chosen ciphersuite provides perfect forward secrecy (PFS).

This property is read-only.

## Data Type

bool

# pinned_client_pre_shared_identity property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Specifies the identity used when the PSK (Pre-Shared Key) key-exchange mechanism is negotiated.

## Syntax

*Rust Syntax*

```text
fn pinned_client_pre_shared_identity(&self ) -> Result<String, SecureBlackboxError>
```

## Default Value

""

## Remarks

Specifies the identity used when the PSK (Pre-Shared Key) key-exchange mechanism is negotiated.

This property is read-only.

## Data Type

String

# pinned_client_pre_shared_identity_hint property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

A hint professed by the server to help the client select the PSK identity to use.

## Syntax

*Rust Syntax*

```text
fn pinned_client_pre_shared_identity_hint(&self ) -> Result<String, SecureBlackboxError>
```

## Default Value

""

## Remarks

A hint professed by the server to help the client select the PSK identity to use.

This property is read-only.

## Data Type

String

# pinned_client_public_key_bits property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

The length of the public key.

## Syntax

*Rust Syntax*

```text
fn pinned_client_public_key_bits(&self ) -> Result<i32, SecureBlackboxError>
```

## Default Value

0

## Remarks

The length of the public key.

This property is read-only.

## Data Type

i32

# pinned_client_remote_address property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

The client's IP address.

## Syntax

*Rust Syntax*

```text
fn pinned_client_remote_address(&self ) -> Result<String, SecureBlackboxError>
```

## Default Value

""

## Remarks

The client's IP address.

This property is read-only.

## Data Type

String

# pinned_client_remote_port property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

The remote port of the client connection.

## Syntax

*Rust Syntax*

```text
fn pinned_client_remote_port(&self ) -> Result<i32, SecureBlackboxError>
```

## Default Value

0

## Remarks

The remote port of the client connection.

This property is read-only.

## Data Type

i32

# pinned_client_resumed_session property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Indicates whether a TLS-enabled connection was spawned from another TLS connection.

## Syntax

*Rust Syntax*

```text
fn pinned_client_resumed_session(&self ) -> Result<bool, SecureBlackboxError>
```

## Default Value

false

## Remarks

Indicates whether a TLS-enabled connection was spawned from another TLS connection

This property is read-only.

## Data Type

bool

# pinned_client_secure_connection property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Indicates whether TLS or SSL is enabled for this connection.

## Syntax

*Rust Syntax*

```text
fn pinned_client_secure_connection(&self ) -> Result<bool, SecureBlackboxError>
```

## Default Value

false

## Remarks

Indicates whether TLS or SSL is enabled for this connection.

This property is read-only.

## Data Type

bool

# pinned_client_server_authenticated property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Indicates whether server authentication was performed during a TLS-enabled connection.

## Syntax

*Rust Syntax*

```text
fn pinned_client_server_authenticated(&self ) -> Result<bool, SecureBlackboxError>
```

## Default Value

false

## Remarks

Indicates whether server authentication was performed during a TLS-enabled connection.

This property is read-only.

## Data Type

bool

# pinned_client_signature_algorithm property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

The signature algorithm used in a TLS handshake.

## Syntax

*Rust Syntax*

```text
fn pinned_client_signature_algorithm(&self ) -> Result<String, SecureBlackboxError>
```

## Default Value

""

## Remarks

The signature algorithm used in a TLS handshake.

This property is read-only.

## Data Type

String

# pinned_client_symmetric_block_size property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

The block size of the symmetric algorithm used.

## Syntax

*Rust Syntax*

```text
fn pinned_client_symmetric_block_size(&self ) -> Result<i32, SecureBlackboxError>
```

## Default Value

0

## Remarks

The block size of the symmetric algorithm used.

This property is read-only.

## Data Type

i32

# pinned_client_symmetric_key_bits property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

The key length of the symmetric algorithm used.

## Syntax

*Rust Syntax*

```text
fn pinned_client_symmetric_key_bits(&self ) -> Result<i32, SecureBlackboxError>
```

## Default Value

0

## Remarks

The key length of the symmetric algorithm used.

This property is read-only.

## Data Type

i32

# pinned_client_total_bytes_received property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

The total number of bytes received over this connection.

## Syntax

*Rust Syntax*

```text
fn pinned_client_total_bytes_received(&self ) -> Result<i64, SecureBlackboxError>
```

## Default Value

0

## Remarks

The total number of bytes received over this connection.

This property is read-only.

## Data Type

i64

# pinned_client_total_bytes_sent property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

The total number of bytes sent over this connection.

## Syntax

*Rust Syntax*

```text
fn pinned_client_total_bytes_sent(&self ) -> Result<i64, SecureBlackboxError>
```

## Default Value

0

## Remarks

The total number of bytes sent over this connection.

This property is read-only.

## Data Type

i64

# pinned_client_validation_log property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Contains the server certificate's chain validation log.

## Syntax

*Rust Syntax*

```text
fn pinned_client_validation_log(&self ) -> Result<String, SecureBlackboxError>
```

## Default Value

""

## Remarks

Contains the server certificate's chain validation log. This information may be very useful in investigating chain validation failures.

This property is read-only.

## Data Type

String

# pinned_client_version property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Indicates the version of SSL/TLS protocol negotiated during this connection.

## Syntax

*Rust Syntax*

```text
fn pinned_client_version(&self ) -> Result<String, SecureBlackboxError>
```

## Default Value

""

## Remarks

Indicates the version of SSL/TLS protocol negotiated during this connection.

This property is read-only.

## Data Type

String

# pinned_client_cert_count property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

The number of records in the PinnedClientCert arrays.

## Syntax

*Rust Syntax*

```text
fn pinned_client_cert_count(&self ) -> Result<i32, SecureBlackboxError>
```

## Default Value

0

## Remarks

This property controls the size of the following arrays:

- [pinned_client_cert_bytes](#pinned_client_cert_bytes-property-httpserver-struct)
- [pinned_client_cert_ca_key_id](#pinned_client_cert_ca_key_id-property-httpserver-struct)
- [pinned_client_cert_fingerprint](#pinned_client_cert_fingerprint-property-httpserver-struct)
- [pinned_client_cert_handle](#pinned_client_cert_handle-property-httpserver-struct)
- [pinned_client_cert_issuer](#pinned_client_cert_issuer-property-httpserver-struct)
- [pinned_client_cert_issuer_rdn](#pinned_client_cert_issuer_rdn-property-httpserver-struct)
- [pinned_client_cert_key_algorithm](#pinned_client_cert_key_algorithm-property-httpserver-struct)
- [pinned_client_cert_key_bits](#pinned_client_cert_key_bits-property-httpserver-struct)
- [pinned_client_cert_key_fingerprint](#pinned_client_cert_key_fingerprint-property-httpserver-struct)
- [pinned_client_cert_key_usage](#pinned_client_cert_key_usage-property-httpserver-struct)
- [pinned_client_cert_public_key_bytes](#pinned_client_cert_public_key_bytes-property-httpserver-struct)
- [pinned_client_cert_self_signed](#pinned_client_cert_self_signed-property-httpserver-struct)
- [pinned_client_cert_serial_number](#pinned_client_cert_serial_number-property-httpserver-struct)
- [pinned_client_cert_sig_algorithm](#pinned_client_cert_sig_algorithm-property-httpserver-struct)
- [pinned_client_cert_subject](#pinned_client_cert_subject-property-httpserver-struct)
- [pinned_client_cert_subject_key_id](#pinned_client_cert_subject_key_id-property-httpserver-struct)
- [pinned_client_cert_subject_rdn](#pinned_client_cert_subject_rdn-property-httpserver-struct)
- [pinned_client_cert_valid_from](#pinned_client_cert_valid_from-property-httpserver-struct)
- [pinned_client_cert_valid_to](#pinned_client_cert_valid_to-property-httpserver-struct)

The array indices start at *0* and end at *pinned_client_cert_count - 1*.

This property is read-only.

## Data Type

i32

# pinned_client_cert_bytes property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Returns the raw certificate data in DER format.

## Syntax

*Rust Syntax*

```text
fn pinned_client_cert_bytes(&self , PinnedClientCertIndex : i32) -> Result<Vec<u8>, SecureBlackboxError>
```

## Remarks

Returns the raw certificate data in DER format.

The *PinnedClientCertIndex* parameter specifies the index of the item in the array. The size of the array is controlled by the [PinnedClientCertCount](#pinned_client_cert_count-property-httpserver-struct) property.

This property is read-only.

## Data Type

Vec

# pinned_client_cert_ca_key_id property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

A unique identifier (fingerprint) of the CA certificate's cryptographic key.

## Syntax

*Rust Syntax*

```text
fn pinned_client_cert_ca_key_id(&self , PinnedClientCertIndex : i32) -> Result<Vec<u8>, SecureBlackboxError>
```

## Remarks

A unique identifier (fingerprint) of the CA certificate's cryptographic key.

Authority Key Identifier is a certificate extension which allows identification of certificates belonging to the same issuer, but with different public keys. It is a de-facto standard to include this extension in all certificates to facilitate chain building.

This setting cannot be set when generating a certificate as it always derives from another certificate property. [CertificateManager](#CertificateManager) generates this setting automatically if enough information is available to it: for self-signed certificates, this value is copied from the [pinned_client_cert_subject_key_id](#pinned_client_cert_subject_key_id-property-httpserver-struct) setting, and for lower-level certificates, from the parent certificate's subject key ID extension.

The *PinnedClientCertIndex* parameter specifies the index of the item in the array. The size of the array is controlled by the [PinnedClientCertCount](#pinned_client_cert_count-property-httpserver-struct) property.

This property is read-only.

## Data Type

Vec

# pinned_client_cert_fingerprint property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Contains the fingerprint (a hash imprint) of this certificate.

## Syntax

*Rust Syntax*

```text
fn pinned_client_cert_fingerprint(&self , PinnedClientCertIndex : i32) -> Result<String, SecureBlackboxError>
```

## Default Value

""

## Remarks

Contains the fingerprint (a hash imprint) of this certificate.

While there is no formal standard defining what a fingerprint is, a SHA1 hash of the certificate's DER-encoded body is typically used.

The *PinnedClientCertIndex* parameter specifies the index of the item in the array. The size of the array is controlled by the [PinnedClientCertCount](#pinned_client_cert_count-property-httpserver-struct) property.

This property is read-only.

## Data Type

String

# pinned_client_cert_handle property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Allows to get or set a 'handle', a unique identifier of the underlying property object.

## Syntax

*Rust Syntax*

```text
fn pinned_client_cert_handle(&self , PinnedClientCertIndex : i32) -> Result<i64, SecureBlackboxError>
```

## Default Value

0

## Remarks

Allows to get or set a 'handle', a unique identifier of the underlying property object. Use this property to assign objects of the same type in a quicker manner, without copying them fieldwise.

When you pass a handle of one object to another, the source object is copied to the destination rather than assigned. It is safe to get rid of the original object after such operation.

```text
  pdfSigner.setSigningCertHandle(certMgr.getCertHandle());
```

The *PinnedClientCertIndex* parameter specifies the index of the item in the array. The size of the array is controlled by the [PinnedClientCertCount](#pinned_client_cert_count-property-httpserver-struct) property.

This property is read-only.

## Data Type

i64

# pinned_client_cert_issuer property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

The common name of the certificate issuer (CA), typically a company name.

## Syntax

*Rust Syntax*

```text
fn pinned_client_cert_issuer(&self , PinnedClientCertIndex : i32) -> Result<String, SecureBlackboxError>
```

## Default Value

""

## Remarks

The common name of the certificate issuer (CA), typically a company name. This is part of a larger set of credentials available via [pinned_client_cert_issuer_rdn](#pinned_client_cert_issuer_rdn-property-httpserver-struct).

The *PinnedClientCertIndex* parameter specifies the index of the item in the array. The size of the array is controlled by the [PinnedClientCertCount](#pinned_client_cert_count-property-httpserver-struct) property.

This property is read-only.

## Data Type

String

# pinned_client_cert_issuer_rdn property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

A list of Property=Value pairs that uniquely identify the certificate issuer.

## Syntax

*Rust Syntax*

```text
fn pinned_client_cert_issuer_rdn(&self , PinnedClientCertIndex : i32) -> Result<String, SecureBlackboxError>
```

## Default Value

""

## Remarks

A list of *Property=Value* pairs that uniquely identify the certificate issuer.

Example: */C=US/O=Nationwide CA/CN=Web Certification Authority*

The *PinnedClientCertIndex* parameter specifies the index of the item in the array. The size of the array is controlled by the [PinnedClientCertCount](#pinned_client_cert_count-property-httpserver-struct) property.

This property is read-only.

## Data Type

String

# pinned_client_cert_key_algorithm property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Specifies the public key algorithm of this certificate.

## Syntax

*Rust Syntax*

```text
fn pinned_client_cert_key_algorithm(&self , PinnedClientCertIndex : i32) -> Result<String, SecureBlackboxError>
```

## Default Value

"0"

## Remarks

Specifies the public key algorithm of this certificate.

|  |  |  |
| --- | --- | --- |
| SB_CERT_ALGORITHM_ID_RSA_ENCRYPTION | rsaEncryption |  |
| SB_CERT_ALGORITHM_MD2_RSA_ENCRYPTION | md2withRSAEncryption |  |
| SB_CERT_ALGORITHM_MD5_RSA_ENCRYPTION | md5withRSAEncryption |  |
| SB_CERT_ALGORITHM_SHA1_RSA_ENCRYPTION | sha1withRSAEncryption |  |
| SB_CERT_ALGORITHM_ID_DSA | id-dsa |  |
| SB_CERT_ALGORITHM_ID_DSA_SHA1 | id-dsa-with-sha1 |  |
| SB_CERT_ALGORITHM_DH_PUBLIC | dhpublicnumber |  |
| SB_CERT_ALGORITHM_SHA224_RSA_ENCRYPTION | sha224WithRSAEncryption |  |
| SB_CERT_ALGORITHM_SHA256_RSA_ENCRYPTION | sha256WithRSAEncryption |  |
| SB_CERT_ALGORITHM_SHA384_RSA_ENCRYPTION | sha384WithRSAEncryption |  |
| SB_CERT_ALGORITHM_SHA512_RSA_ENCRYPTION | sha512WithRSAEncryption |  |
| SB_CERT_ALGORITHM_ID_RSAPSS | id-RSASSA-PSS |  |
| SB_CERT_ALGORITHM_ID_RSAOAEP | id-RSAES-OAEP |  |
| SB_CERT_ALGORITHM_RSASIGNATURE_RIPEMD160 | ripemd160withRSA |  |
| SB_CERT_ALGORITHM_ID_ELGAMAL | elGamal |  |
| SB_CERT_ALGORITHM_SHA1_ECDSA | ecdsa-with-SHA1 |  |
| SB_CERT_ALGORITHM_RECOMMENDED_ECDSA | ecdsa-recommended |  |
| SB_CERT_ALGORITHM_SHA224_ECDSA | ecdsa-with-SHA224 |  |
| SB_CERT_ALGORITHM_SHA256_ECDSA | ecdsa-with-SHA256 |  |
| SB_CERT_ALGORITHM_SHA384_ECDSA | ecdsa-with-SHA384 |  |
| SB_CERT_ALGORITHM_SHA512_ECDSA | ecdsa-with-SHA512 |  |
| SB_CERT_ALGORITHM_EC | id-ecPublicKey |  |
| SB_CERT_ALGORITHM_SPECIFIED_ECDSA | ecdsa-specified |  |
| SB_CERT_ALGORITHM_GOST_R3410_1994 | id-GostR3410-94 |  |
| SB_CERT_ALGORITHM_GOST_R3410_2001 | id-GostR3410-2001 |  |
| SB_CERT_ALGORITHM_GOST_R3411_WITH_R3410_1994 | id-GostR3411-94-with-GostR3410-94 |  |
| SB_CERT_ALGORITHM_GOST_R3411_WITH_R3410_2001 | id-GostR3411-94-with-GostR3410-2001 |  |
| SB_CERT_ALGORITHM_SHA1_ECDSA_PLAIN | ecdsa-plain-SHA1 |  |
| SB_CERT_ALGORITHM_SHA224_ECDSA_PLAIN | ecdsa-plain-SHA224 |  |
| SB_CERT_ALGORITHM_SHA256_ECDSA_PLAIN | ecdsa-plain-SHA256 |  |
| SB_CERT_ALGORITHM_SHA384_ECDSA_PLAIN | ecdsa-plain-SHA384 |  |
| SB_CERT_ALGORITHM_SHA512_ECDSA_PLAIN | ecdsa-plain-SHA512 |  |
| SB_CERT_ALGORITHM_RIPEMD160_ECDSA_PLAIN | ecdsa-plain-RIPEMD160 |  |
| SB_CERT_ALGORITHM_WHIRLPOOL_RSA_ENCRYPTION | whirlpoolWithRSAEncryption |  |
| SB_CERT_ALGORITHM_ID_DSA_SHA224 | id-dsa-with-sha224 |  |
| SB_CERT_ALGORITHM_ID_DSA_SHA256 | id-dsa-with-sha256 |  |
| SB_CERT_ALGORITHM_SHA3_224_RSA_ENCRYPTION | id-rsassa-pkcs1-v1_5-with-sha3-224 |  |
| SB_CERT_ALGORITHM_SHA3_256_RSA_ENCRYPTION | id-rsassa-pkcs1-v1_5-with-sha3-256 |  |
| SB_CERT_ALGORITHM_SHA3_384_RSA_ENCRYPTION | id-rsassa-pkcs1-v1_5-with-sha3-384 |  |
| SB_CERT_ALGORITHM_SHA3_512_RSA_ENCRYPTION | id-rsassa-pkcs1-v1_5-with-sha3-512 |  |
| SB_CERT_ALGORITHM_SHA3_224_ECDSA | id-ecdsa-with-sha3-224 |  |
| SB_CERT_ALGORITHM_SHA3_256_ECDSA | id-ecdsa-with-sha3-256 |  |
| SB_CERT_ALGORITHM_SHA3_384_ECDSA | id-ecdsa-with-sha3-384 |  |
| SB_CERT_ALGORITHM_SHA3_512_ECDSA | id-ecdsa-with-sha3-512 |  |
| SB_CERT_ALGORITHM_SHA3_224_ECDSA_PLAIN | id-ecdsa-plain-with-sha3-224 |  |
| SB_CERT_ALGORITHM_SHA3_256_ECDSA_PLAIN | id-ecdsa-plain-with-sha3-256 |  |
| SB_CERT_ALGORITHM_SHA3_384_ECDSA_PLAIN | id-ecdsa-plain-with-sha3-384 |  |
| SB_CERT_ALGORITHM_SHA3_512_ECDSA_PLAIN | id-ecdsa-plain-with-sha3-512 |  |
| SB_CERT_ALGORITHM_ID_DSA_SHA3_224 | id-dsa-with-sha3-224 |  |
| SB_CERT_ALGORITHM_ID_DSA_SHA3_256 | id-dsa-with-sha3-256 |  |
| SB_CERT_ALGORITHM_BLAKE2S_128_RSA_ENCRYPTION | id-rsassa-pkcs1-v1_5-with-blake2s128 |  |
| SB_CERT_ALGORITHM_BLAKE2S_160_RSA_ENCRYPTION | id-rsassa-pkcs1-v1_5-with-blake2s160 |  |
| SB_CERT_ALGORITHM_BLAKE2S_224_RSA_ENCRYPTION | id-rsassa-pkcs1-v1_5-with-blake2s224 |  |
| SB_CERT_ALGORITHM_BLAKE2S_256_RSA_ENCRYPTION | id-rsassa-pkcs1-v1_5-with-blake2s256 |  |
| SB_CERT_ALGORITHM_BLAKE2B_160_RSA_ENCRYPTION | id-rsassa-pkcs1-v1_5-with-blake2b160 |  |
| SB_CERT_ALGORITHM_BLAKE2B_256_RSA_ENCRYPTION | id-rsassa-pkcs1-v1_5-with-blake2b256 |  |
| SB_CERT_ALGORITHM_BLAKE2B_384_RSA_ENCRYPTION | id-rsassa-pkcs1-v1_5-with-blake2b384 |  |
| SB_CERT_ALGORITHM_BLAKE2B_512_RSA_ENCRYPTION | id-rsassa-pkcs1-v1_5-with-blake2b512 |  |
| SB_CERT_ALGORITHM_BLAKE2S_128_ECDSA | id-ecdsa-with-blake2s128 |  |
| SB_CERT_ALGORITHM_BLAKE2S_160_ECDSA | id-ecdsa-with-blake2s160 |  |
| SB_CERT_ALGORITHM_BLAKE2S_224_ECDSA | id-ecdsa-with-blake2s224 |  |
| SB_CERT_ALGORITHM_BLAKE2S_256_ECDSA | id-ecdsa-with-blake2s256 |  |
| SB_CERT_ALGORITHM_BLAKE2B_160_ECDSA | id-ecdsa-with-blake2b160 |  |
| SB_CERT_ALGORITHM_BLAKE2B_256_ECDSA | id-ecdsa-with-blake2b256 |  |
| SB_CERT_ALGORITHM_BLAKE2B_384_ECDSA | id-ecdsa-with-blake2b384 |  |
| SB_CERT_ALGORITHM_BLAKE2B_512_ECDSA | id-ecdsa-with-blake2b512 |  |
| SB_CERT_ALGORITHM_BLAKE2S_128_ECDSA_PLAIN | id-ecdsa-plain-with-blake2s128 |  |
| SB_CERT_ALGORITHM_BLAKE2S_160_ECDSA_PLAIN | id-ecdsa-plain-with-blake2s160 |  |
| SB_CERT_ALGORITHM_BLAKE2S_224_ECDSA_PLAIN | id-ecdsa-plain-with-blake2s224 |  |
| SB_CERT_ALGORITHM_BLAKE2S_256_ECDSA_PLAIN | id-ecdsa-plain-with-blake2s256 |  |
| SB_CERT_ALGORITHM_BLAKE2B_160_ECDSA_PLAIN | id-ecdsa-plain-with-blake2b160 |  |
| SB_CERT_ALGORITHM_BLAKE2B_256_ECDSA_PLAIN | id-ecdsa-plain-with-blake2b256 |  |
| SB_CERT_ALGORITHM_BLAKE2B_384_ECDSA_PLAIN | id-ecdsa-plain-with-blake2b384 |  |
| SB_CERT_ALGORITHM_BLAKE2B_512_ECDSA_PLAIN | id-ecdsa-plain-with-blake2b512 |  |
| SB_CERT_ALGORITHM_ID_DSA_BLAKE2S_224 | id-dsa-with-blake2s224 |  |
| SB_CERT_ALGORITHM_ID_DSA_BLAKE2S_256 | id-dsa-with-blake2s256 |  |
| SB_CERT_ALGORITHM_EDDSA_ED25519 | id-Ed25519 |  |
| SB_CERT_ALGORITHM_EDDSA_ED448 | id-Ed448 |  |
| SB_CERT_ALGORITHM_EDDSA_ED25519_PH | id-Ed25519ph |  |
| SB_CERT_ALGORITHM_EDDSA_ED448_PH | id-Ed448ph |  |
| SB_CERT_ALGORITHM_EDDSA | id-EdDSA |  |
| SB_CERT_ALGORITHM_EDDSA_SIGNATURE | id-EdDSA-sig |  |
| SB_CERT_ALGORITHM_MLDSA_44 | id-ml-dsa-44 |  |
| SB_CERT_ALGORITHM_MLDSA_65 | id-ml-dsa-65 |  |
| SB_CERT_ALGORITHM_MLDSA_87 | id-ml-dsa-87 |  |
| SB_CERT_ALGORITHM_HASH_MLDSA_44_SHA512 | id-hash-ml-dsa-44-with-sha512 |  |
| SB_CERT_ALGORITHM_HASH_MLDSA_65_SHA512 | id-hash-ml-dsa-65-with-sha512 |  |
| SB_CERT_ALGORITHM_HASH_MLDSA_87_SHA512 | id-hash-ml-dsa-87-with-sha512 |  |
| SB_CERT_ALGORITHM_MLKEM_512 | id-ml-kem-512 |  |
| SB_CERT_ALGORITHM_MLKEM_768 | id-ml-kem-768 |  |
| SB_CERT_ALGORITHM_MLKEM_1024 | id-ml-kem-1024 |  |

Use the [pinned_client_cert_key_bits](#pinned_client_cert_key_bits-property-httpserver-struct), [pinned_client_cert_curve](#HTTPServer_p_PinnedClientCertCurve), and [pinned_client_cert_public_key_bytes](#pinned_client_cert_public_key_bytes-property-httpserver-struct) properties to get more details about the key the certificate contains.

The *PinnedClientCertIndex* parameter specifies the index of the item in the array. The size of the array is controlled by the [PinnedClientCertCount](#pinned_client_cert_count-property-httpserver-struct) property.

This property is read-only.

## Data Type

String

# pinned_client_cert_key_bits property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Returns the length of the public key in bits.

## Syntax

*Rust Syntax*

```text
fn pinned_client_cert_key_bits(&self , PinnedClientCertIndex : i32) -> Result<i32, SecureBlackboxError>
```

## Default Value

0

## Remarks

Returns the length of the public key in bits.

This value indicates the length of the principal cryptographic parameter of the key, such as the length of the RSA modulus or ECDSA field. The key data returned by the [pinned_client_cert_public_key_bytes](#pinned_client_cert_public_key_bytes-property-httpserver-struct) or [pinned_client_cert_private_key_bytes](#HTTPServer_p_PinnedClientCertPrivateKeyBytes) property would typically contain auxiliary values, and therefore be longer.

The *PinnedClientCertIndex* parameter specifies the index of the item in the array. The size of the array is controlled by the [PinnedClientCertCount](#pinned_client_cert_count-property-httpserver-struct) property.

This property is read-only.

## Data Type

i32

# pinned_client_cert_key_fingerprint property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Returns a SHA1 fingerprint of the public key contained in the certificate.

## Syntax

*Rust Syntax*

```text
fn pinned_client_cert_key_fingerprint(&self , PinnedClientCertIndex : i32) -> Result<String, SecureBlackboxError>
```

## Default Value

""

## Remarks

Returns a SHA1 fingerprint of the public key contained in the certificate.

Note that the key fingerprint is different from the certificate fingerprint accessible via the [pinned_client_cert_fingerprint](#pinned_client_cert_fingerprint-property-httpserver-struct) property. The key fingerprint uniquely identifies the public key, and so can be the same for multiple certificates containing the same key.

The *PinnedClientCertIndex* parameter specifies the index of the item in the array. The size of the array is controlled by the [PinnedClientCertCount](#pinned_client_cert_count-property-httpserver-struct) property.

This property is read-only.

## Data Type

String

# pinned_client_cert_key_usage property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Indicates the purposes of the key contained in the certificate, in the form of an OR'ed flag set.

## Syntax

*Rust Syntax*

```text
fn pinned_client_cert_key_usage(&self , PinnedClientCertIndex : i32) -> Result<i32, SecureBlackboxError>
```

## Default Value

0

## Remarks

Indicates the purposes of the key contained in the certificate, in the form of an OR'ed flag set.

This value is a bit mask of the following values:

|  |  |  |
| --- | --- | --- |
| ckuUnknown | 0x00000 | Unknown key usage |
| ckuDigitalSignature | 0x00001 | Digital signature |
| ckuNonRepudiation | 0x00002 | Non-repudiation |
| ckuKeyEncipherment | 0x00004 | Key encipherment |
| ckuDataEncipherment | 0x00008 | Data encipherment |
| ckuKeyAgreement | 0x00010 | Key agreement |
| ckuKeyCertSign | 0x00020 | Certificate signing |
| ckuCRLSign | 0x00040 | Revocation signing |
| ckuEncipherOnly | 0x00080 | Encipher only |
| ckuDecipherOnly | 0x00100 | Decipher only |
| ckuServerAuthentication | 0x00200 | Server authentication |
| ckuClientAuthentication | 0x00400 | Client authentication |
| ckuCodeSigning | 0x00800 | Code signing |
| ckuEmailProtection | 0x01000 | Email protection |
| ckuTimeStamping | 0x02000 | Timestamping |
| ckuOCSPSigning | 0x04000 | OCSP signing |
| ckuSmartCardLogon | 0x08000 | Smartcard logon |
| ckuKeyPurposeClientAuth | 0x10000 | Kerberos - client authentication |
| ckuKeyPurposeKDC | 0x20000 | Kerberos - KDC |

Set this property before generating the certificate to propagate the key usage flags to the new certificate.

The *PinnedClientCertIndex* parameter specifies the index of the item in the array. The size of the array is controlled by the [PinnedClientCertCount](#pinned_client_cert_count-property-httpserver-struct) property.

This property is read-only.

## Data Type

i32

# pinned_client_cert_public_key_bytes property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Contains the certificate's public key in DER format.

## Syntax

*Rust Syntax*

```text
fn pinned_client_cert_public_key_bytes(&self , PinnedClientCertIndex : i32) -> Result<Vec<u8>, SecureBlackboxError>
```

## Remarks

Contains the certificate's public key in DER format.

This typically would contain an ASN.1-encoded public key value. The exact format depends on the type of the public key contained in the certificate.

The *PinnedClientCertIndex* parameter specifies the index of the item in the array. The size of the array is controlled by the [PinnedClientCertCount](#pinned_client_cert_count-property-httpserver-struct) property.

This property is read-only.

## Data Type

Vec

# pinned_client_cert_self_signed property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Indicates whether the certificate is self-signed (root) or signed by an external CA.

## Syntax

*Rust Syntax*

```text
fn pinned_client_cert_self_signed(&self , PinnedClientCertIndex : i32) -> Result<bool, SecureBlackboxError>
```

## Default Value

false

## Remarks

Indicates whether the certificate is self-signed (root) or signed by an external CA.

The *PinnedClientCertIndex* parameter specifies the index of the item in the array. The size of the array is controlled by the [PinnedClientCertCount](#pinned_client_cert_count-property-httpserver-struct) property.

This property is read-only.

## Data Type

bool

# pinned_client_cert_serial_number property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Returns the certificate's serial number.

## Syntax

*Rust Syntax*

```text
fn pinned_client_cert_serial_number(&self , PinnedClientCertIndex : i32) -> Result<Vec<u8>, SecureBlackboxError>
```

## Remarks

Returns the certificate's serial number.

The serial number is a binary string that uniquely identifies a certificate among others issued by the same CA. According to the X.509 standard, the (issuer, serial number) pair should be globally unique to facilitate chain building.

The *PinnedClientCertIndex* parameter specifies the index of the item in the array. The size of the array is controlled by the [PinnedClientCertCount](#pinned_client_cert_count-property-httpserver-struct) property.

This property is read-only.

## Data Type

Vec

# pinned_client_cert_sig_algorithm property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Indicates the algorithm that was used by the CA to sign this certificate.

## Syntax

*Rust Syntax*

```text
fn pinned_client_cert_sig_algorithm(&self , PinnedClientCertIndex : i32) -> Result<String, SecureBlackboxError>
```

## Default Value

""

## Remarks

Indicates the algorithm that was used by the CA to sign this certificate.

A signature algorithm typically combines hash and public key algorithms together, such as *sha256WithRSAEncryption* or *ecdsa-with-SHA256*.

The *PinnedClientCertIndex* parameter specifies the index of the item in the array. The size of the array is controlled by the [PinnedClientCertCount](#pinned_client_cert_count-property-httpserver-struct) property.

This property is read-only.

## Data Type

String

# pinned_client_cert_subject property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

The common name of the certificate holder, typically an individual's name, a URL, an e-mail address, or a company name.

## Syntax

*Rust Syntax*

```text
fn pinned_client_cert_subject(&self , PinnedClientCertIndex : i32) -> Result<String, SecureBlackboxError>
```

## Default Value

""

## Remarks

The common name of the certificate holder, typically an individual's name, a URL, an e-mail address, or a company name. This is part of a larger set of credentials available via [pinned_client_cert_subject_rdn](#pinned_client_cert_subject_rdn-property-httpserver-struct).

The *PinnedClientCertIndex* parameter specifies the index of the item in the array. The size of the array is controlled by the [PinnedClientCertCount](#pinned_client_cert_count-property-httpserver-struct) property.

This property is read-only.

## Data Type

String

# pinned_client_cert_subject_key_id property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Contains a unique identifier of the certificate's cryptographic key.

## Syntax

*Rust Syntax*

```text
fn pinned_client_cert_subject_key_id(&self , PinnedClientCertIndex : i32) -> Result<Vec<u8>, SecureBlackboxError>
```

## Remarks

Contains a unique identifier of the certificate's cryptographic key.

Subject Key Identifier is a certificate extension which allows a specific public key to be associated with a certificate holder. Typically, subject key identifiers of CA certificates are recorded as respective CA key identifiers in the subordinate certificates that they issue, which facilitates chain building.

The [pinned_client_cert_subject_key_id](#pinned_client_cert_subject_key_id-property-httpserver-struct) and [pinned_client_cert_ca_key_id](#pinned_client_cert_ca_key_id-property-httpserver-struct) properties of self-signed certificates typically contain identical values, as in that specific case, the issuer and the subject are the same entity.

The *PinnedClientCertIndex* parameter specifies the index of the item in the array. The size of the array is controlled by the [PinnedClientCertCount](#pinned_client_cert_count-property-httpserver-struct) property.

This property is read-only.

## Data Type

Vec

# pinned_client_cert_subject_rdn property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

A list of Property=Value pairs that uniquely identify the certificate holder (subject).

## Syntax

*Rust Syntax*

```text
fn pinned_client_cert_subject_rdn(&self , PinnedClientCertIndex : i32) -> Result<String, SecureBlackboxError>
```

## Default Value

""

## Remarks

A list of *Property=Value* pairs that uniquely identify the certificate holder (subject).

Depending on the purpose of the certificate and the policies of the CA that issued it, the values included in the subject record may differ drastically and contain business or personal names, web URLs, email addresses, and other data.

Example: */C=US/O=Oranges and Apples, Inc./OU=Accounts Receivable/1.2.3.4.5=Value with unknown OID/CN=Margaret Watkins*.

The *PinnedClientCertIndex* parameter specifies the index of the item in the array. The size of the array is controlled by the [PinnedClientCertCount](#pinned_client_cert_count-property-httpserver-struct) property.

This property is read-only.

## Data Type

String

# pinned_client_cert_valid_from property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

The time point at which the certificate becomes valid, in UTC.

## Syntax

*Rust Syntax*

```text
fn pinned_client_cert_valid_from(&self , PinnedClientCertIndex : i32) -> Result<String, SecureBlackboxError>
```

## Default Value

""

## Remarks

The time point at which the certificate becomes valid, in UTC.

The *PinnedClientCertIndex* parameter specifies the index of the item in the array. The size of the array is controlled by the [PinnedClientCertCount](#pinned_client_cert_count-property-httpserver-struct) property.

This property is read-only.

## Data Type

String

# pinned_client_cert_valid_to property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

The time point at which the certificate expires, in UTC.

## Syntax

*Rust Syntax*

```text
fn pinned_client_cert_valid_to(&self , PinnedClientCertIndex : i32) -> Result<String, SecureBlackboxError>
```

## Default Value

""

## Remarks

The time point at which the certificate expires, in UTC.

The *PinnedClientCertIndex* parameter specifies the index of the item in the array. The size of the array is controlled by the [PinnedClientCertCount](#pinned_client_cert_count-property-httpserver-struct) property.

This property is read-only.

## Data Type

String

# port property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Specifies the port number to listen for connections on.

## Syntax

*Rust Syntax*

```text
fn port(&self ) -> Result<i32, SecureBlackboxError> fn set_port(&self, value : i32) ->  Option<SecureBlackboxError>
```

## Default Value

80

## Remarks

Use this property to specify the port number to listen to connections on. Standard port numbers are 80 for an HTTP server, and 443 for an HTTPS server.

Alternatively, you may specify the acceptable range of listening ports via [port_range_from](#port_range_from-property-httpserver-struct) and [port_range_to](#port_range_to-property-httpserver-struct) properties. In this case the port will be allocated within the requested range by the operating system, and reported in [bound_port](#bound_port-property-httpserver-struct).

## Data Type

i32

# port_range_from property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Specifies the lower limit of the listening port range for incoming connections.

## Syntax

*Rust Syntax*

```text
fn port_range_from(&self ) -> Result<i32, SecureBlackboxError> fn set_port_range_from(&self, value : i32) ->  Option<SecureBlackboxError>
```

## Default Value

0

## Remarks

Use this property to specify the lower limit of the port range to listen to connections on. When a port range is used to specify the listening port (as opposed to a fixed value provided via [port](#port-property-httpserver-struct)), the port will be allocated within the requested range by the operating system, and reported in [bound_port](#bound_port-property-httpserver-struct).

Note that this property is ignored if the [port](#port-property-httpserver-struct) property is set to a non-zero value, in which case the server always aims to listen on that fixed port.

## Data Type

i32

# port_range_to property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Specifies the upper limit of the listening port range for incoming connections.

## Syntax

*Rust Syntax*

```text
fn port_range_to(&self ) -> Result<i32, SecureBlackboxError> fn set_port_range_to(&self, value : i32) ->  Option<SecureBlackboxError>
```

## Default Value

0

## Remarks

Use this property to specify the upper limit of the port range to listen to connections on. When a port range is used to specify the listening port (as opposed to a fixed value provided via [port](#port-property-httpserver-struct)), the port will be allocated within the requested range by the operating system, and reported in [bound_port](#bound_port-property-httpserver-struct).

Note that this property is ignored if the [port](#port-property-httpserver-struct) property is set to a non-zero value, in which case the server always aims to listen on that fixed port.

## Data Type

i32

# session_timeout property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Specifies the default session timeout value in milliseconds.

## Syntax

*Rust Syntax*

```text
fn session_timeout(&self ) -> Result<i32, SecureBlackboxError> fn set_session_timeout(&self, value : i32) ->  Option<SecureBlackboxError>
```

## Default Value

360000

## Remarks

Specifies the period of inactivity (in milliseconds) after which the connection will be terminated by the server.

## Data Type

i32

# socket_incoming_speed_limit property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

The maximum number of bytes to read from the socket, per second.

## Syntax

*Rust Syntax*

```text
fn socket_incoming_speed_limit(&self ) -> Result<i32, SecureBlackboxError> fn set_socket_incoming_speed_limit(&self, value : i32) ->  Option<SecureBlackboxError>
```

## Default Value

0

## Remarks

The maximum number of bytes to read from the socket, per second.

## Data Type

i32

# socket_local_address property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

The local network interface to bind the socket to.

## Syntax

*Rust Syntax*

```text
fn socket_local_address(&self ) -> Result<String, SecureBlackboxError> fn set_socket_local_address(&self, value : &str) ->  Option<SecureBlackboxError>
fn set_socket_local_address_ref(&self, value : &String) ->  Option<SecureBlackboxError>
```

## Default Value

""

## Remarks

The local network interface to bind the socket to.

## Data Type

String

# socket_local_port property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

The local port number to bind the socket to.

## Syntax

*Rust Syntax*

```text
fn socket_local_port(&self ) -> Result<i32, SecureBlackboxError> fn set_socket_local_port(&self, value : i32) ->  Option<SecureBlackboxError>
```

## Default Value

0

## Remarks

The local port number to bind the socket to.

## Data Type

i32

# socket_outgoing_speed_limit property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

The maximum number of bytes to write to the socket, per second.

## Syntax

*Rust Syntax*

```text
fn socket_outgoing_speed_limit(&self ) -> Result<i32, SecureBlackboxError> fn set_socket_outgoing_speed_limit(&self, value : i32) ->  Option<SecureBlackboxError>
```

## Default Value

0

## Remarks

The maximum number of bytes to write to the socket, per second.

## Data Type

i32

# socket_timeout property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

The maximum period of waiting, in milliseconds, after which the socket operation is considered unsuccessful.

## Syntax

*Rust Syntax*

```text
fn socket_timeout(&self ) -> Result<i32, SecureBlackboxError> fn set_socket_timeout(&self, value : i32) ->  Option<SecureBlackboxError>
```

## Default Value

60000

## Remarks

The maximum period of waiting, in milliseconds, after which the socket operation is considered unsuccessful.

If *Timeout* is set to 0, a socket operation will expire after the system-default timeout (2 hrs 8 min for TCP stack).

## Data Type

i32

# socket_use_ipv6 property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Enables or disables IP protocol version 6.

## Syntax

*Rust Syntax*

```text
fn socket_use_ipv6(&self ) -> Result<bool, SecureBlackboxError> fn set_socket_use_ipv6(&self, value : bool) ->  Option<SecureBlackboxError>
```

## Default Value

false

## Remarks

Enables or disables IP protocol version 6.

## Data Type

bool

# tls_server_cert_count property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

The number of records in the TLSServerCert arrays.

## Syntax

*Rust Syntax*

```text
fn tls_server_cert_count(&self ) -> Result<i32, SecureBlackboxError> fn set_tls_server_cert_count(&self, value : i32) ->  Option<SecureBlackboxError>
```

## Default Value

0

## Remarks

This property controls the size of the following arrays:

- [tls_server_cert_bytes](#tls_server_cert_bytes-property-httpserver-struct)
- [tls_server_cert_handle](#tls_server_cert_handle-property-httpserver-struct)

The array indices start at *0* and end at *tls_server_cert_count - 1*.

## Data Type

i32

# tls_server_cert_bytes property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Returns the raw certificate data in DER format.

## Syntax

*Rust Syntax*

```text
fn tls_server_cert_bytes(&self , TLSServerCertIndex : i32) -> Result<Vec<u8>, SecureBlackboxError>
```

## Remarks

Returns the raw certificate data in DER format.

The *TLSServerCertIndex* parameter specifies the index of the item in the array. The size of the array is controlled by the [TLSServerCertCount](#tls_server_cert_count-property-httpserver-struct) property.

This property is read-only.

## Data Type

Vec

# tls_server_cert_handle property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Allows to get or set a 'handle', a unique identifier of the underlying property object.

## Syntax

*Rust Syntax*

```text
fn tls_server_cert_handle(&self , TLSServerCertIndex : i32) -> Result<i64, SecureBlackboxError> fn set_tls_server_cert_handle(&self, TLSServerCertIndex : i32, value : i64) ->  Option<SecureBlackboxError>
```

## Default Value

0

## Remarks

Allows to get or set a 'handle', a unique identifier of the underlying property object. Use this property to assign objects of the same type in a quicker manner, without copying them fieldwise.

When you pass a handle of one object to another, the source object is copied to the destination rather than assigned. It is safe to get rid of the original object after such operation.

```text
  pdfSigner.setSigningCertHandle(certMgr.getCertHandle());
```

The *TLSServerCertIndex* parameter specifies the index of the item in the array. The size of the array is controlled by the [TLSServerCertCount](#tls_server_cert_count-property-httpserver-struct) property.

## Data Type

i64

# tls_auto_validate_certificates property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Specifies whether server-side TLS certificates should be validated automatically using internal validation rules.

## Syntax

*Rust Syntax*

```text
fn tls_auto_validate_certificates(&self ) -> Result<bool, SecureBlackboxError> fn set_tls_auto_validate_certificates(&self, value : bool) ->  Option<SecureBlackboxError>
```

## Default Value

true

## Remarks

Specifies whether server-side TLS certificates should be validated automatically using internal validation rules.

## Data Type

bool

# tls_base_configuration property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Selects the base configuration for the TLS settings.

## Syntax

*Rust Syntax*

```text
fn tls_base_configuration(&self ) -> Result<i32, SecureBlackboxError> fn set_tls_base_configuration(&self, value : i32) ->  Option<SecureBlackboxError>
```

## Possible Values

```text
0   // Default1   // Compatible2   // ComprehensiveInsecure3   // HighlySecure
```

## Default Value

0

## Remarks

Selects the base configuration for the TLS settings. Several profiles are offered and tuned up for different purposes, such as high security or higher compatibility.

|  |  |  |
| --- | --- | --- |
| stpcDefault | 0 |  |
| stpcCompatible | 1 |  |
| stpcComprehensiveInsecure | 2 |  |
| stpcHighlySecure | 3 |  |

## Data Type

i32

# tls_ciphersuites property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

A list of ciphersuites separated with commas or semicolons.

## Syntax

*Rust Syntax*

```text
fn tls_ciphersuites(&self ) -> Result<String, SecureBlackboxError> fn set_tls_ciphersuites(&self, value : &str) ->  Option<SecureBlackboxError>
fn set_tls_ciphersuites_ref(&self, value : &String) ->  Option<SecureBlackboxError>
```

## Default Value

""

## Remarks

A list of ciphersuites separated with commas or semicolons. Each ciphersuite in the list may be prefixed with a minus sign (-) to indicate that the ciphersuite should be disabled rather than enabled. Besides the specific ciphersuite modifiers, this property supports the *all* (and *-all*) aliases, allowing all ciphersuites to be blanketly enabled or disabled at once.

Note: the list of ciphersuites provided to this property alters the baseline list of ciphersuites as defined by [tls_base_configuration](#tls_base_configuration-property-httpserver-struct). Remember to start your ciphersuite string with -all; if you need to only enable a specific fixed set of ciphersuites. The list of supported ciphersuites is provided below:

- NULL_NULL_NULL
- RSA_NULL_MD5
- RSA_NULL_SHA
- RSA_RC4_MD5
- RSA_RC4_SHA
- RSA_RC2_MD5
- RSA_IDEA_MD5
- RSA_IDEA_SHA
- RSA_DES_MD5
- RSA_DES_SHA
- RSA_3DES_MD5
- RSA_3DES_SHA
- RSA_AES128_SHA
- RSA_AES256_SHA
- DH_DSS_DES_SHA
- DH_DSS_3DES_SHA
- DH_DSS_AES128_SHA
- DH_DSS_AES256_SHA
- DH_RSA_DES_SHA
- DH_RSA_3DES_SHA
- DH_RSA_AES128_SHA
- DH_RSA_AES256_SHA
- DHE_DSS_DES_SHA
- DHE_DSS_3DES_SHA
- DHE_DSS_AES128_SHA
- DHE_DSS_AES256_SHA
- DHE_RSA_DES_SHA
- DHE_RSA_3DES_SHA
- DHE_RSA_AES128_SHA
- DHE_RSA_AES256_SHA
- DH_ANON_RC4_MD5
- DH_ANON_DES_SHA
- DH_ANON_3DES_SHA
- DH_ANON_AES128_SHA
- DH_ANON_AES256_SHA
- RSA_RC2_MD5_EXPORT
- RSA_RC4_MD5_EXPORT
- RSA_DES_SHA_EXPORT
- DH_DSS_DES_SHA_EXPORT
- DH_RSA_DES_SHA_EXPORT
- DHE_DSS_DES_SHA_EXPORT
- DHE_RSA_DES_SHA_EXPORT
- DH_ANON_RC4_MD5_EXPORT
- DH_ANON_DES_SHA_EXPORT
- RSA_CAMELLIA128_SHA
- DH_DSS_CAMELLIA128_SHA
- DH_RSA_CAMELLIA128_SHA
- DHE_DSS_CAMELLIA128_SHA
- DHE_RSA_CAMELLIA128_SHA
- DH_ANON_CAMELLIA128_SHA
- RSA_CAMELLIA256_SHA
- DH_DSS_CAMELLIA256_SHA
- DH_RSA_CAMELLIA256_SHA
- DHE_DSS_CAMELLIA256_SHA
- DHE_RSA_CAMELLIA256_SHA
- DH_ANON_CAMELLIA256_SHA
- PSK_RC4_SHA
- PSK_3DES_SHA
- PSK_AES128_SHA
- PSK_AES256_SHA
- DHE_PSK_RC4_SHA
- DHE_PSK_3DES_SHA
- DHE_PSK_AES128_SHA
- DHE_PSK_AES256_SHA
- RSA_PSK_RC4_SHA
- RSA_PSK_3DES_SHA
- RSA_PSK_AES128_SHA
- RSA_PSK_AES256_SHA
- RSA_SEED_SHA
- DH_DSS_SEED_SHA
- DH_RSA_SEED_SHA
- DHE_DSS_SEED_SHA
- DHE_RSA_SEED_SHA
- DH_ANON_SEED_SHA
- SRP_SHA_3DES_SHA
- SRP_SHA_RSA_3DES_SHA
- SRP_SHA_DSS_3DES_SHA
- SRP_SHA_AES128_SHA
- SRP_SHA_RSA_AES128_SHA
- SRP_SHA_DSS_AES128_SHA
- SRP_SHA_AES256_SHA
- SRP_SHA_RSA_AES256_SHA
- SRP_SHA_DSS_AES256_SHA
- ECDH_ECDSA_NULL_SHA
- ECDH_ECDSA_RC4_SHA
- ECDH_ECDSA_3DES_SHA
- ECDH_ECDSA_AES128_SHA
- ECDH_ECDSA_AES256_SHA
- ECDHE_ECDSA_NULL_SHA
- ECDHE_ECDSA_RC4_SHA
- ECDHE_ECDSA_3DES_SHA
- ECDHE_ECDSA_AES128_SHA
- ECDHE_ECDSA_AES256_SHA
- ECDH_RSA_NULL_SHA
- ECDH_RSA_RC4_SHA
- ECDH_RSA_3DES_SHA
- ECDH_RSA_AES128_SHA
- ECDH_RSA_AES256_SHA
- ECDHE_RSA_NULL_SHA
- ECDHE_RSA_RC4_SHA
- ECDHE_RSA_3DES_SHA
- ECDHE_RSA_AES128_SHA
- ECDHE_RSA_AES256_SHA
- ECDH_ANON_NULL_SHA
- ECDH_ANON_RC4_SHA
- ECDH_ANON_3DES_SHA
- ECDH_ANON_AES128_SHA
- ECDH_ANON_AES256_SHA
- RSA_NULL_SHA256
- RSA_AES128_SHA256
- RSA_AES256_SHA256
- DH_DSS_AES128_SHA256
- DH_RSA_AES128_SHA256
- DHE_DSS_AES128_SHA256
- DHE_RSA_AES128_SHA256
- DH_DSS_AES256_SHA256
- DH_RSA_AES256_SHA256
- DHE_DSS_AES256_SHA256
- DHE_RSA_AES256_SHA256
- DH_ANON_AES128_SHA256
- DH_ANON_AES256_SHA256
- RSA_AES128_GCM_SHA256
- RSA_AES256_GCM_SHA384
- DHE_RSA_AES128_GCM_SHA256
- DHE_RSA_AES256_GCM_SHA384
- DH_RSA_AES128_GCM_SHA256
- DH_RSA_AES256_GCM_SHA384
- DHE_DSS_AES128_GCM_SHA256
- DHE_DSS_AES256_GCM_SHA384
- DH_DSS_AES128_GCM_SHA256
- DH_DSS_AES256_GCM_SHA384
- DH_ANON_AES128_GCM_SHA256
- DH_ANON_AES256_GCM_SHA384
- ECDHE_ECDSA_AES128_SHA256
- ECDHE_ECDSA_AES256_SHA384
- ECDH_ECDSA_AES128_SHA256
- ECDH_ECDSA_AES256_SHA384
- ECDHE_RSA_AES128_SHA256
- ECDHE_RSA_AES256_SHA384
- ECDH_RSA_AES128_SHA256
- ECDH_RSA_AES256_SHA384
- ECDHE_ECDSA_AES128_GCM_SHA256
- ECDHE_ECDSA_AES256_GCM_SHA384
- ECDH_ECDSA_AES128_GCM_SHA256
- ECDH_ECDSA_AES256_GCM_SHA384
- ECDHE_RSA_AES128_GCM_SHA256
- ECDHE_RSA_AES256_GCM_SHA384
- ECDH_RSA_AES128_GCM_SHA256
- ECDH_RSA_AES256_GCM_SHA384
- PSK_AES128_GCM_SHA256
- PSK_AES256_GCM_SHA384
- DHE_PSK_AES128_GCM_SHA256
- DHE_PSK_AES256_GCM_SHA384
- RSA_PSK_AES128_GCM_SHA256
- RSA_PSK_AES256_GCM_SHA384
- PSK_AES128_SHA256
- PSK_AES256_SHA384
- PSK_NULL_SHA256
- PSK_NULL_SHA384
- DHE_PSK_AES128_SHA256
- DHE_PSK_AES256_SHA384
- DHE_PSK_NULL_SHA256
- DHE_PSK_NULL_SHA384
- RSA_PSK_AES128_SHA256
- RSA_PSK_AES256_SHA384
- RSA_PSK_NULL_SHA256
- RSA_PSK_NULL_SHA384
- RSA_CAMELLIA128_SHA256
- DH_DSS_CAMELLIA128_SHA256
- DH_RSA_CAMELLIA128_SHA256
- DHE_DSS_CAMELLIA128_SHA256
- DHE_RSA_CAMELLIA128_SHA256
- DH_ANON_CAMELLIA128_SHA256
- RSA_CAMELLIA256_SHA256
- DH_DSS_CAMELLIA256_SHA256
- DH_RSA_CAMELLIA256_SHA256
- DHE_DSS_CAMELLIA256_SHA256
- DHE_RSA_CAMELLIA256_SHA256
- DH_ANON_CAMELLIA256_SHA256
- ECDHE_ECDSA_CAMELLIA128_SHA256
- ECDHE_ECDSA_CAMELLIA256_SHA384
- ECDH_ECDSA_CAMELLIA128_SHA256
- ECDH_ECDSA_CAMELLIA256_SHA384
- ECDHE_RSA_CAMELLIA128_SHA256
- ECDHE_RSA_CAMELLIA256_SHA384
- ECDH_RSA_CAMELLIA128_SHA256
- ECDH_RSA_CAMELLIA256_SHA384
- RSA_CAMELLIA128_GCM_SHA256
- RSA_CAMELLIA256_GCM_SHA384
- DHE_RSA_CAMELLIA128_GCM_SHA256
- DHE_RSA_CAMELLIA256_GCM_SHA384
- DH_RSA_CAMELLIA128_GCM_SHA256
- DH_RSA_CAMELLIA256_GCM_SHA384
- DHE_DSS_CAMELLIA128_GCM_SHA256
- DHE_DSS_CAMELLIA256_GCM_SHA384
- DH_DSS_CAMELLIA128_GCM_SHA256
- DH_DSS_CAMELLIA256_GCM_SHA384
- DH_anon_CAMELLIA128_GCM_SHA256
- DH_anon_CAMELLIA256_GCM_SHA384
- ECDHE_ECDSA_CAMELLIA128_GCM_SHA256
- ECDHE_ECDSA_CAMELLIA256_GCM_SHA384
- ECDH_ECDSA_CAMELLIA128_GCM_SHA256
- ECDH_ECDSA_CAMELLIA256_GCM_SHA384
- ECDHE_RSA_CAMELLIA128_GCM_SHA256
- ECDHE_RSA_CAMELLIA256_GCM_SHA384
- ECDH_RSA_CAMELLIA128_GCM_SHA256
- ECDH_RSA_CAMELLIA256_GCM_SHA384
- PSK_CAMELLIA128_GCM_SHA256
- PSK_CAMELLIA256_GCM_SHA384
- DHE_PSK_CAMELLIA128_GCM_SHA256
- DHE_PSK_CAMELLIA256_GCM_SHA384
- RSA_PSK_CAMELLIA128_GCM_SHA256
- RSA_PSK_CAMELLIA256_GCM_SHA384
- PSK_CAMELLIA128_SHA256
- PSK_CAMELLIA256_SHA384
- DHE_PSK_CAMELLIA128_SHA256
- DHE_PSK_CAMELLIA256_SHA384
- RSA_PSK_CAMELLIA128_SHA256
- RSA_PSK_CAMELLIA256_SHA384
- ECDHE_PSK_CAMELLIA128_SHA256
- ECDHE_PSK_CAMELLIA256_SHA384
- ECDHE_PSK_RC4_SHA
- ECDHE_PSK_3DES_SHA
- ECDHE_PSK_AES128_SHA
- ECDHE_PSK_AES256_SHA
- ECDHE_PSK_AES128_SHA256
- ECDHE_PSK_AES256_SHA384
- ECDHE_PSK_NULL_SHA
- ECDHE_PSK_NULL_SHA256
- ECDHE_PSK_NULL_SHA384
- ECDHE_RSA_CHACHA20_POLY1305_SHA256
- ECDHE_ECDSA_CHACHA20_POLY1305_SHA256
- DHE_RSA_CHACHA20_POLY1305_SHA256
- PSK_CHACHA20_POLY1305_SHA256
- ECDHE_PSK_CHACHA20_POLY1305_SHA256
- DHE_PSK_CHACHA20_POLY1305_SHA256
- RSA_PSK_CHACHA20_POLY1305_SHA256
- AES128_GCM_SHA256
- AES256_GCM_SHA384
- CHACHA20_POLY1305_SHA256
- AES128_CCM_SHA256
- AES128_CCM8_SHA256

## Data Type

String

# tls_client_auth property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Enables or disables certificate-based client authentication.

## Syntax

*Rust Syntax*

```text
fn tls_client_auth(&self ) -> Result<i32, SecureBlackboxError> fn set_tls_client_auth(&self, value : i32) ->  Option<SecureBlackboxError>
```

## Possible Values

```text
0   // NoAuth1   // RequestCert2   // RequireCert
```

## Default Value

0

## Remarks

Enables or disables certificate-based client authentication.

Set this property to true to tune up the client authentication type:

|  |  |  |
| --- | --- | --- |
| ccatNoAuth | 0 |  |
| ccatRequestCert | 1 |  |
| ccatRequireCert | 2 |  |

## Data Type

i32

# tls_extensions property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Provides access to TLS extensions.

## Syntax

*Rust Syntax*

```text
fn tls_extensions(&self ) -> Result<String, SecureBlackboxError> fn set_tls_extensions(&self, value : &str) ->  Option<SecureBlackboxError>
fn set_tls_extensions_ref(&self, value : &String) ->  Option<SecureBlackboxError>
```

## Default Value

""

## Remarks

Provides access to TLS extensions.

## Data Type

String

# tls_force_resume_if_destination_changes property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Whether to force TLS session resumption when the destination address changes.

## Syntax

*Rust Syntax*

```text
fn tls_force_resume_if_destination_changes(&self ) -> Result<bool, SecureBlackboxError> fn set_tls_force_resume_if_destination_changes(&self, value : bool) ->  Option<SecureBlackboxError>
```

## Default Value

false

## Remarks

Whether to force TLS session resumption when the destination address changes.

## Data Type

bool

# tls_groups property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Specifies a list of key exchange groups to attempt during the TLS key exchange.

## Syntax

*Rust Syntax*

```text
fn tls_groups(&self ) -> Result<String, SecureBlackboxError> fn set_tls_groups(&self, value : &str) ->  Option<SecureBlackboxError>
fn set_tls_groups_ref(&self, value : &String) ->  Option<SecureBlackboxError>
```

## Default Value

""

## Remarks

Specifies a list of key exchange groups to attempt during the TLS key exchange.

Keep this setting at its default value (empty string) to stick with the default list of key exchange groups. You can tweak the list by using '+' and '-' modifiers that are immediately followed by a group name or the *all* placeholder:

```text
  // Ensure the two x25519-based groups are enabled and the finite field DHE2048 is disabled
  client.TLSSettings.Groups = "+x25519mlkem768;+x25519;-ffdhe2048";

  // Only enable the hybrid X25519/ML-KEM768 group
  client.TLSSettings.Groups = "-all;+x25519mlkem768";
```

The list of groups supported by the component is provided below. All the names are case-insensitive:

**Elliptic curve-based groups:**

- SECT163K1
- SECT163R1
- SECT163R2
- SECT193R1
- SECT193R2
- SECT233K1
- SECT233R1
- SECT239K1
- SECT283K1
- SECT283R1
- SECT409K1
- SECT409R1
- SECT571K1
- SECT571R1
- SECP160K1
- SECP160R1
- SECP160R2
- SECP192K1
- SECP192R1
- SECP224K1
- SECP224R1
- SECP256K1
- SECP256R1
- SECP384R1
- SECP521R1
- BRAINPOOLP256R1
- BRAINPOOLP384R1
- BRAINPOOLP512R1
- X25519
- X448

**Finite field-based groups:**

- FFDHE2048
- FFDHE3072
- FFDHE4096
- FFDHE6144
- FFDHE8192

**Post-Quantum and Hybrid groups:**

- MLKEM512
- MLKEM768
- MLKEM1024
- SECP256R1MLKEM768
- X25519MLKEM768
- SECP384R1MLKEM1024

Note: this property was called *ECCurves* in SecureBlackbox 2024 and older.

## Data Type

String

# tls_pre_shared_identity property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Defines the identity used when the PSK (Pre-Shared Key) key-exchange mechanism is negotiated.

## Syntax

*Rust Syntax*

```text
fn tls_pre_shared_identity(&self ) -> Result<String, SecureBlackboxError> fn set_tls_pre_shared_identity(&self, value : &str) ->  Option<SecureBlackboxError>
fn set_tls_pre_shared_identity_ref(&self, value : &String) ->  Option<SecureBlackboxError>
```

## Default Value

""

## Remarks

Defines the identity used when the PSK (Pre-Shared Key) key-exchange mechanism is negotiated.

## Data Type

String

# tls_pre_shared_key property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Contains the pre-shared key for the PSK (Pre-Shared Key) key-exchange mechanism, encoded with base16.

## Syntax

*Rust Syntax*

```text
fn tls_pre_shared_key(&self ) -> Result<String, SecureBlackboxError> fn set_tls_pre_shared_key(&self, value : &str) ->  Option<SecureBlackboxError>
fn set_tls_pre_shared_key_ref(&self, value : &String) ->  Option<SecureBlackboxError>
```

## Default Value

""

## Remarks

Contains the pre-shared key for the PSK (Pre-Shared Key) key-exchange mechanism, encoded with base16.

## Data Type

String

# tls_pre_shared_key_ciphersuite property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Defines the ciphersuite used for PSK (Pre-Shared Key) negotiation.

## Syntax

*Rust Syntax*

```text
fn tls_pre_shared_key_ciphersuite(&self ) -> Result<String, SecureBlackboxError> fn set_tls_pre_shared_key_ciphersuite(&self, value : &str) ->  Option<SecureBlackboxError>
fn set_tls_pre_shared_key_ciphersuite_ref(&self, value : &String) ->  Option<SecureBlackboxError>
```

## Default Value

""

## Remarks

Defines the ciphersuite used for PSK (Pre-Shared Key) negotiation.

## Data Type

String

# tls_renegotiation_attack_prevention_mode property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Selects the renegotiation attack prevention mechanism.

## Syntax

*Rust Syntax*

```text
fn tls_renegotiation_attack_prevention_mode(&self ) -> Result<i32, SecureBlackboxError> fn set_tls_renegotiation_attack_prevention_mode(&self, value : i32) ->  Option<SecureBlackboxError>
```

## Possible Values

```text
0   // Compatible1   // Strict2   // Auto
```

## Default Value

2

## Remarks

Selects the renegotiation attack prevention mechanism.

The following options are available:

|  |  |  |
| --- | --- | --- |
| crapmCompatible | 0 | TLS 1.0 and 1.1 compatibility mode (renegotiation indication extension is disabled). |
| crapmStrict | 1 | Renegotiation attack prevention is enabled and enforced. |
| crapmAuto | 2 | Automatically choose whether to enable or disable renegotiation attack prevention. |

## Data Type

i32

# tls_revocation_check property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Specifies the kind(s) of revocation check to perform.

## Syntax

*Rust Syntax*

```text
fn tls_revocation_check(&self ) -> Result<i32, SecureBlackboxError> fn set_tls_revocation_check(&self, value : i32) ->  Option<SecureBlackboxError>
```

## Possible Values

```text
0   // None1   // Auto2   // AllCRL3   // AllOCSP4   // AllCRLAndOCSP5   // AnyCRL6   // AnyOCSP7   // AnyCRLOrOCSP8   // AnyOCSPOrCRL
```

## Default Value

1

## Remarks

Specifies the kind(s) of revocation check to perform.

Revocation checking is necessary to ensure the integrity of the chain and obtain up-to-date certificate validity and trustworthiness information.

|  |  |  |
| --- | --- | --- |
| crcNone | 0 | No revocation checking. |
| crcAuto | 1 | Automatic mode selection. Currently this maps to crcAnyOCSPOrCRL, but it may change in the future. |
| crcAllCRL | 2 | All provided CRL endpoints will be checked, and all checks must succeed. |
| crcAllOCSP | 3 | All provided OCSP endpoints will be checked, and all checks must succeed. |
| crcAllCRLAndOCSP | 4 | All provided CRL and OCSP endpoints will be checked, and all checks must succeed. |
| crcAnyCRL | 5 | All provided CRL endpoints will be checked, and at least one check must succeed. |
| crcAnyOCSP | 6 | All provided OCSP endpoints will be checked, and at least one check must succeed. |
| crcAnyCRLOrOCSP | 7 | All provided CRL and OCSP endpoints will be checked, and at least one check must succeed. CRL endpoints are checked first. |
| crcAnyOCSPOrCRL | 8 | All provided CRL and OCSP endpoints will be checked, and at least one check must succeed. OCSP endpoints are checked first. |

This setting controls the way the revocation checks are performed for every certificate in the chain. Typically certificates come with two types of revocation information sources: CRL (certificate revocation lists) and OCSP responders. CRLs are static objects periodically published by the CA at some online location. OCSP responders are active online services maintained by the CA that can provide up-to-date information on certificate statuses in near real time.

There are some conceptual differences between the two. CRLs are normally larger in size. Their use involves some latency because there is normally some delay between the time when a certificate was revoked and the time the subsequent CRL mentioning that is published. The benefits of CRL is that the same object can provide statuses for all certificates issued by a particular CA, and that the whole technology is much simpler than OCSP (and thus is supported by more CAs).

This setting lets you adjust the validation course by including or excluding certain types of revocation sources from the validation process. The crcAnyOCSPOrCRL setting (give preference to the faster OCSP route and only demand one source to succeed) is a good choice for most typical validation environments. The "crcAll*" modes are much stricter, and may be used in scenarios where bulletproof validity information is essential.

NOTE: If no CRL or OCSP endpoints are provided by the CA, the revocation check will be considered successful. This is because the CA chose not to supply revocation information for its certificates, meaning they are considered irrevocable.

NOTE: Within each of the above settings, if any retrieved CRL or OCSP response indicates that the certificate has been revoked, the revocation check fails.

## Data Type

i32

# tls_ssl_options property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Various SSL (TLS) protocol options, set of cssloExpectShutdownMessage 0x001 Wait for the close-notify message when shutting down the connection cssloOpenSSLDTLSWorkaround 0x002 (DEPRECATED) Use a DTLS version workaround when talking to very old OpenSSL versions cssloDisableKexLengthAlignment 0x004 Do not align the client-side PMS by the RSA modulus size.

## Syntax

*Rust Syntax*

```text
fn tls_ssl_options(&self ) -> Result<i32, SecureBlackboxError> fn set_tls_ssl_options(&self, value : i32) ->  Option<SecureBlackboxError>
```

## Default Value

16

## Remarks

Various SSL (TLS) protocol options, set of

|  |  |  |
| --- | --- | --- |
| cssloExpectShutdownMessage | 0x001 | Wait for the close-notify message when shutting down the connection |
| cssloOpenSSLDTLSWorkaround | 0x002 | (DEPRECATED) Use a DTLS version workaround when talking to very old OpenSSL versions |
| cssloDisableKexLengthAlignment | 0x004 | Do not align the client-side PMS by the RSA modulus size. It is unlikely that you will ever need to adjust it. |
| cssloForceUseOfClientCertHashAlg | 0x008 | Enforce the use of the client certificate hash algorithm. It is unlikely that you will ever need to adjust it. |
| cssloAutoAddServerNameExtension | 0x010 | Automatically add the server name extension when known |
| cssloAcceptTrustedSRPPrimesOnly | 0x020 | Accept trusted SRP primes only |
| cssloDisableSignatureAlgorithmsExtension | 0x040 | Disable (do not send) the signature algorithms extension. It is unlikely that you will ever need to adjust it. |
| cssloIntolerateHigherProtocolVersions | 0x080 | (server option) Do not allow fallback from TLS versions higher than currently enabled |
| cssloStickToPrefCertHashAlg | 0x100 | Stick to preferred certificate hash algorithms |
| cssloNoImplicitTLS12Fallback | 0x200 | Disable implicit TLS 1.3 to 1.2 fallbacks |
| cssloUseHandshakeBatches | 0x400 | Send the handshake message as large batches rather than individually |

## Data Type

i32

# tls_mode property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Specifies the TLS mode to use.

## Syntax

*Rust Syntax*

```text
fn tls_mode(&self ) -> Result<i32, SecureBlackboxError> fn set_tls_mode(&self, value : i32) ->  Option<SecureBlackboxError>
```

## Possible Values

```text
0   // Default1   // NoTLS2   // ExplicitTLS3   // ImplicitTLS4   // MixedTLS
```

## Default Value

0

## Remarks

Specifies the TLS mode to use.

|  |  |  |
| --- | --- | --- |
| smDefault | 0 |  |
| smNoTLS | 1 | Do not use TLS |
| smExplicitTLS | 2 | Connect to the server without any encryption and then request an SSL session. |
| smImplicitTLS | 3 | Connect to the specified port, and establish the SSL session at once. |
| smMixedTLS | 4 | Connect to the specified port, and establish the SSL session at once, but allow plain data. |

## Data Type

i32

# tls_use_extended_master_secret property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Enables the Extended Master Secret Extension, as defined in RFC 7627.

## Syntax

*Rust Syntax*

```text
fn tls_use_extended_master_secret(&self ) -> Result<bool, SecureBlackboxError> fn set_tls_use_extended_master_secret(&self, value : bool) ->  Option<SecureBlackboxError>
```

## Default Value

true

## Remarks

Enables the Extended Master Secret Extension, as defined in RFC 7627.

## Data Type

bool

# tls_use_session_resumption property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Enables or disables the TLS session resumption capability.

## Syntax

*Rust Syntax*

```text
fn tls_use_session_resumption(&self ) -> Result<bool, SecureBlackboxError> fn set_tls_use_session_resumption(&self, value : bool) ->  Option<SecureBlackboxError>
```

## Default Value

false

## Remarks

Enables or disables the TLS session resumption capability.

## Data Type

bool

# tls_versions property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

The SSL/TLS versions to enable by default.

## Syntax

*Rust Syntax*

```text
fn tls_versions(&self ) -> Result<i32, SecureBlackboxError> fn set_tls_versions(&self, value : i32) ->  Option<SecureBlackboxError>
```

## Default Value

48

## Remarks

The SSL/TLS versions to enable by default.

|  |  |  |
| --- | --- | --- |
| csbSSL2 | 0x01 | SSL 2 |
| csbSSL3 | 0x02 | SSL 3 |
| csbTLS1 | 0x04 | TLS 1.0 |
| csbTLS11 | 0x08 | TLS 1.1 |
| csbTLS12 | 0x10 | TLS 1.2 |
| csbTLS13 | 0x20 | TLS 1.3 |

## Data Type

i32

# use_chunked_transfer property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Enables chunked transfer.

## Syntax

*Rust Syntax*

```text
fn use_chunked_transfer(&self ) -> Result<bool, SecureBlackboxError> fn set_use_chunked_transfer(&self, value : bool) ->  Option<SecureBlackboxError>
```

## Default Value

false

## Remarks

Use this property to enable chunked content encoding.

## Data Type

bool

# use_compression property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Enables or disables server-side compression.

## Syntax

*Rust Syntax*

```text
fn use_compression(&self ) -> Result<bool, SecureBlackboxError> fn set_use_compression(&self, value : bool) ->  Option<SecureBlackboxError>
```

## Default Value

false

## Remarks

Use this property to enable or disable server-side content compression.

## Data Type

bool

# user_count property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

The number of records in the User arrays.

## Syntax

*Rust Syntax*

```text
fn user_count(&self ) -> Result<i32, SecureBlackboxError> fn set_user_count(&self, value : i32) ->  Option<SecureBlackboxError>
```

## Default Value

0

## Remarks

This property controls the size of the following arrays:

- [user_associated_data](#user_associated_data-property-httpserver-struct)
- [user_base_path](#user_base_path-property-httpserver-struct)
- [user_data](#user_data-property-httpserver-struct)
- [user_handle](#user_handle-property-httpserver-struct)
- [user_hash_algorithm](#user_hash_algorithm-property-httpserver-struct)
- [user_incoming_speed_limit](#user_incoming_speed_limit-property-httpserver-struct)
- [username](#username-property-httpserver-struct)
- [user_outgoing_speed_limit](#user_outgoing_speed_limit-property-httpserver-struct)
- [user_password](#user_password-property-httpserver-struct)
- [user_shared_secret](#user_shared_secret-property-httpserver-struct)

The array indices start at *0* and end at *user_count - 1*.

## Data Type

i32

# user_associated_data property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Contains the user's Associated Data when SSH AEAD (Authenticated Encryption with Associated Data) algorithm is used.

## Syntax

*Rust Syntax*

```text
fn user_associated_data(&self , UserIndex : i32) -> Result<Vec<u8>, SecureBlackboxError> fn set_user_associated_data(&self, UserIndex : i32, value : Vec<u8>) ->  Option<SecureBlackboxError>
fn set_user_associated_data_ref(&self, UserIndex : i32, value : &[u8]) ->  Option<SecureBlackboxError>
```

## Remarks

Contains the user's Associated Data when SSH AEAD (Authenticated Encryption with Associated Data) algorithm is used.

The *UserIndex* parameter specifies the index of the item in the array. The size of the array is controlled by the [UserCount](#user_count-property-httpserver-struct) property.

## Data Type

Vec

# user_base_path property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Base path for this user in the server's file system.

## Syntax

*Rust Syntax*

```text
fn user_base_path(&self , UserIndex : i32) -> Result<String, SecureBlackboxError> fn set_user_base_path(&self, UserIndex : i32, value : &str) ->  Option<SecureBlackboxError>
fn set_user_base_path_ref(&self, UserIndex : i32, value : &String) ->  Option<SecureBlackboxError>
```

## Default Value

""

## Remarks

Base path for this user in the server's file system.

The *UserIndex* parameter specifies the index of the item in the array. The size of the array is controlled by the [UserCount](#user_count-property-httpserver-struct) property.

## Data Type

String

# user_data property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Contains uninterpreted user-defined data that should be associated with the user account, such as comments or custom settings.

## Syntax

*Rust Syntax*

```text
fn user_data(&self , UserIndex : i32) -> Result<String, SecureBlackboxError> fn set_user_data(&self, UserIndex : i32, value : &str) ->  Option<SecureBlackboxError>
fn set_user_data_ref(&self, UserIndex : i32, value : &String) ->  Option<SecureBlackboxError>
```

## Default Value

""

## Remarks

Contains uninterpreted user-defined data that should be associated with the user account, such as comments or custom settings.

The *UserIndex* parameter specifies the index of the item in the array. The size of the array is controlled by the [UserCount](#user_count-property-httpserver-struct) property.

## Data Type

String

# user_handle property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Allows to get or set a 'handle', a unique identifier of the underlying property object.

## Syntax

*Rust Syntax*

```text
fn user_handle(&self , UserIndex : i32) -> Result<i64, SecureBlackboxError> fn set_user_handle(&self, UserIndex : i32, value : i64) ->  Option<SecureBlackboxError>
```

## Default Value

0

## Remarks

Allows to get or set a 'handle', a unique identifier of the underlying property object. Use this property to assign objects of the same type in a quicker manner, without copying them fieldwise.

When you pass a handle of one object to another, the source object is copied to the destination rather than assigned. It is safe to get rid of the original object after such operation.

```text
  pdfSigner.setSigningCertHandle(certMgr.getCertHandle());
```

The *UserIndex* parameter specifies the index of the item in the array. The size of the array is controlled by the [UserCount](#user_count-property-httpserver-struct) property.

## Data Type

i64

# user_hash_algorithm property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Specifies the hash algorithm used to generate TOTP (Time-based One-Time Passwords) passwords for this user.

## Syntax

*Rust Syntax*

```text
fn user_hash_algorithm(&self , UserIndex : i32) -> Result<String, SecureBlackboxError> fn set_user_hash_algorithm(&self, UserIndex : i32, value : &str) ->  Option<SecureBlackboxError>
fn set_user_hash_algorithm_ref(&self, UserIndex : i32, value : &String) ->  Option<SecureBlackboxError>
```

## Default Value

""

## Remarks

Specifies the hash algorithm used to generate TOTP (Time-based One-Time Passwords) passwords for this user. Three HMAC algorithms are supported, with SHA-1, SHA-256, and SHA-512 digests:

|  |  |  |
| --- | --- | --- |
| SB_MAC_ALGORITHM_HMAC_SHA1 | SHA1 |  |
| SB_MAC_ALGORITHM_HMAC_SHA256 | SHA256 |  |
| SB_MAC_ALGORITHM_HMAC_SHA512 | SHA512 |  |

The *UserIndex* parameter specifies the index of the item in the array. The size of the array is controlled by the [UserCount](#user_count-property-httpserver-struct) property.

## Data Type

String

# user_incoming_speed_limit property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Specifies the incoming speed limit for this user.

## Syntax

*Rust Syntax*

```text
fn user_incoming_speed_limit(&self , UserIndex : i32) -> Result<i32, SecureBlackboxError> fn set_user_incoming_speed_limit(&self, UserIndex : i32, value : i32) ->  Option<SecureBlackboxError>
```

## Default Value

0

## Remarks

Specifies the incoming speed limit for this user. The value of 0 (zero) means "no limitation".

The *UserIndex* parameter specifies the index of the item in the array. The size of the array is controlled by the [UserCount](#user_count-property-httpserver-struct) property.

## Data Type

i32

# user_outgoing_speed_limit property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Specifies the outgoing speed limit for this user.

## Syntax

*Rust Syntax*

```text
fn user_outgoing_speed_limit(&self , UserIndex : i32) -> Result<i32, SecureBlackboxError> fn set_user_outgoing_speed_limit(&self, UserIndex : i32, value : i32) ->  Option<SecureBlackboxError>
```

## Default Value

0

## Remarks

Specifies the outgoing speed limit for this user. The value of 0 (zero) means "no limitation".

The *UserIndex* parameter specifies the index of the item in the array. The size of the array is controlled by the [UserCount](#user_count-property-httpserver-struct) property.

## Data Type

i32

# user_password property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

The user's authentication password.

## Syntax

*Rust Syntax*

```text
fn user_password(&self , UserIndex : i32) -> Result<String, SecureBlackboxError> fn set_user_password(&self, UserIndex : i32, value : &str) ->  Option<SecureBlackboxError>
fn set_user_password_ref(&self, UserIndex : i32, value : &String) ->  Option<SecureBlackboxError>
```

## Default Value

""

## Remarks

The user's authentication password.

The *UserIndex* parameter specifies the index of the item in the array. The size of the array is controlled by the [UserCount](#user_count-property-httpserver-struct) property.

## Data Type

String

# user_shared_secret property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Contains the user's secret key, which is essentially a shared secret between the client and server.

## Syntax

*Rust Syntax*

```text
fn user_shared_secret(&self , UserIndex : i32) -> Result<Vec<u8>, SecureBlackboxError> fn set_user_shared_secret(&self, UserIndex : i32, value : Vec<u8>) ->  Option<SecureBlackboxError>
fn set_user_shared_secret_ref(&self, UserIndex : i32, value : &[u8]) ->  Option<SecureBlackboxError>
```

## Remarks

Contains the user's secret key, which is essentially a shared secret between the client and server.

Shared secrets can be used in TLS-driven protocols, as well as in OTP (where it is called a 'key secret') for generating one-time passwords on one side, and validate them on the other.

The *UserIndex* parameter specifies the index of the item in the array. The size of the array is controlled by the [UserCount](#user_count-property-httpserver-struct) property.

## Data Type

Vec

# username property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

The registered name (login) of the user.

## Syntax

*Rust Syntax*

```text
fn username(&self , UserIndex : i32) -> Result<String, SecureBlackboxError> fn set_username(&self, UserIndex : i32, value : &str) ->  Option<SecureBlackboxError>
fn set_username_ref(&self, UserIndex : i32, value : &String) ->  Option<SecureBlackboxError>
```

## Default Value

""

## Remarks

The registered name (login) of the user.

The *UserIndex* parameter specifies the index of the item in the array. The size of the array is controlled by the [UserCount](#user_count-property-httpserver-struct) property.

## Data Type

String

# website_name property ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Specifies the web site name to use in the certificate.

## Syntax

*Rust Syntax*

```text
fn website_name(&self ) -> Result<String, SecureBlackboxError> fn set_website_name(&self, value : &str) ->  Option<SecureBlackboxError>
fn set_website_name_ref(&self, value : &String) ->  Option<SecureBlackboxError>
```

## Default Value

"secureblackbox"

## Remarks

If using an internally-generated certificate, use this property to specify the web site name to be included as a common name. A typical common name consists of the host name, such as '192.168.10.10' or 'domain.com'.

## Data Type

String

# cleanup method ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Cleans up the server environment by purging expired sessions and cleaning caches.

## Syntax

*Rust Syntax*

```text
fn cleanup(&self) -> Result<(), SecureBlackboxError>
```

## Remarks

Call this method while the server is active to clean up the environment allocated for the server by releasing unused resources and cleaning caches.

# config method ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Sets or retrieves a configuration setting.

## Syntax

*Rust Syntax*

```text
fn config(&self, configuration_string : &str) ->  Result<String, SecureBlackboxError>
```

## Remarks

config is a generic method available in every struct. It is used to set and retrieve [configuration settings](#config-settings-httpserver-struct) for the struct.

These settings are similar in functionality to properties, but they are rarely used. In order to avoid "polluting" the property namespace of the struct, access to these *internal properties* is provided through the config method.

To set a configuration setting named *PROPERTY*, you must call *Config("PROPERTY=VALUE")*, where *VALUE* is the value of the setting expressed as a string. For boolean values, use the strings "True", "False", "0", "1", "Yes", or "No" (case does not matter).

To read (query) the value of a [configuration setting](#config-settings-httpserver-struct), you must call *Config("PROPERTY")*. The value will be returned as a string.

# do_action method ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Performs an additional action.

## Syntax

*Rust Syntax*

```text
fn do_action(&self, action_id : &str, action_params : &str) ->  Result<String, SecureBlackboxError>
```

## Remarks

do_action is a generic method available in every struct. It is used to perform an additional action introduced after the product major release. The list of actions is not fixed, and may be flexibly extended over time.

The unique identifier (case insensitive) of the action is provided in the *ActionID* parameter.

*ActionParams* contains the value of a single parameter, or a list of multiple parameters for the action in the form of *PARAM1=VALUE1;PARAM2=VALUE2;...*.

Common ActionIDs:

|  |  |  |  |
| --- | --- | --- | --- |
| Action | Parameters | Returned value | Description |
| ResetTrustedListCache | none | none | Clears the cached list of trusted lists. |
| ResetCertificateCache | none | none | Clears the cached certificates. |
| ResetCRLCache | none | none | Clears the cached CRLs. |
| ResetOCSPResponseCache | none | none | Clears the cached OCSP responses. |

|  |  |  |
| --- | --- | --- |
| Action | Parameters | Description |
| AddOAuthScope | scope description | Adds a known scope. The description should be in the form: <scope-name>=<comma-separated-methods><space><path> See examples below |
| RemoveOAuthScope | scope name | Removes a scope with the specified name. |

**Examples of scope definitions**

*Allows to read all files from the specified folder*: Photos.Read=GET /photos/%USERNAME%/latest/*

*Allows to write all files from the specified folder*: Photos.Write=POST,PUT /photos/%USERNAME%/latest/*

The %USERNAME% macros will be replaced with the actual username

# drop_client method ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Terminates a client connection.

## Syntax

*Rust Syntax*

```text
fn drop_client(&self, connection_id : i64, forced : bool) -> Result<(), SecureBlackboxError>
```

## Remarks

Call this method to shut down a connected client. *Forced* indicates whether the connection should be closed in a graceful manner.

# get_request_bytes method ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Returns the contents of the client's HTTP request.

## Syntax

*Rust Syntax*

```text
fn get_request_bytes(&self, connection_id : i64, request_filter : &str) ->  Result<Vec<u8>, SecureBlackboxError>
```

## Remarks

Use this method to get the body of the client's HTTP request. Note that the body of GET and HEAD requests is empty. The method returns the requested content.

The *RequestFilter* parameter allows you to select the element(s) that you would like to get. An empty request filter makes the whole body to be returned. The following request filters are currently supported:

|  |  |
| --- | --- |
| params | Request query parameters only. |
| params[Index] | A specific request parameter, by index. |
| params['Name'] | A specific request parameter, by name. |
| parts[Index] | The body of a particular part of a multipart message. |

# get_request_header method ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Returns a request header value.

## Syntax

*Rust Syntax*

```text
fn get_request_header(&self, connection_id : i64, header_name : &str) ->  Result<String, SecureBlackboxError>
```

## Remarks

Use this method to get the value of a request header. A good place to call this method is a request-marking event, such as [on_get_request](#on_get_request-event-httpserver-struct) or [on_post_request](#on_post_request-event-httpserver-struct).

# get_request_string method ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Returns the contents of the client's HTTP request.

## Syntax

*Rust Syntax*

```text
fn get_request_string(&self, connection_id : i64, request_filter : &str) ->  Result<String, SecureBlackboxError>
```

## Remarks

Use this method to get the body of the client's HTTP request to a string. Note that the body of GET and HEAD requests is empty.

The *RequestFilter* parameter allows you to select the element(s) of the requests that you would like to get. An empty request filter makes the whole body to be returned. The following request filters are currently supported:

|  |  |
| --- | --- |
| params | Request query parameters only. |
| params[Index] | A specific request parameter, by index. |
| params['Name'] | A specific request parameter, by name. |
| parts[Index] | The body of a particular part of a multipart message. |

# get_request_username method ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Returns the username for a connection.

## Syntax

*Rust Syntax*

```text
fn get_request_username(&self, connection_id : i64) ->  Result<String, SecureBlackboxError>
```

## Remarks

Use this method to obtain a username for an active connection. The method will return an empty string if no authentication has been performed on the connection.

# get_response_header method ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Returns a response header value.

## Syntax

*Rust Syntax*

```text
fn get_response_header(&self, connection_id : i64, header_name : &str) ->  Result<String, SecureBlackboxError>
```

## Remarks

Use this method to get the value of a response header. A good place to call this method is [on_headers_prepared](#on_headers_prepared-event-httpserver-struct) event. Call the method with empty *HeaderName* to get the whole response header.

# list_clients method ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Enumerates the connected clients.

## Syntax

*Rust Syntax*

```text
fn list_clients(&self) ->  Result<String, SecureBlackboxError>
```

## Remarks

This method enumerates the connected clients. It returns a list of strings, with each string being of 'ConnectionID|Address|Port' format, and representing a single connection.

# pin_client method ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Takes a snapshot of the connection's properties.

## Syntax

*Rust Syntax*

```text
fn pin_client(&self, connection_id : i64) -> Result<(), SecureBlackboxError>
```

## Remarks

Use this method to take a snapshot of a connected client. The captured properties are populated in pinned_client and pinned_client_chain properties.

# process_generic_request method ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Processes a generic HTTP request.

## Syntax

*Rust Syntax*

```text
fn process_generic_request(&self, connection_id : i64, request_bytes : &[u8]) ->  Result<Vec<u8>, SecureBlackboxError>
```

## Remarks

This method processes a generic HTTP request and produces a response. Use it to generate HTTP responses for requests obtained externally, out of the default HTTP channel.

This method respects all current settings of the server object, and invokes the corresponding events to consult about the request and response details with the application. *ConnectionId* allows to identify the request in the events.

The method returns the complete HTTP response including HTTP headers.

# reset method ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Resets the struct settings.

## Syntax

*Rust Syntax*

```text
fn reset(&self) -> Result<(), SecureBlackboxError>
```

## Remarks

reset is a generic method available in every struct.

# set_response_bytes method ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Sets a byte array to be served as a response.

## Syntax

*Rust Syntax*

```text
fn set_response_bytes(&self, connection_id : i64, bytes : &[u8], content_type : &str, response_filter : &str, more_to_follow : bool) -> Result<(), SecureBlackboxError>
```

## Remarks

Use this property to provide the response content in a byte array. The *ResponseFilter* parameter lets you select the element of the response that you would like to set with this call. The empty filter stands for the entire response body.

Set the *MoreToFollow* parameter to true if you expect to provide more response data for this request. Setting *MoreToFollow* to true tells the server to use chunked encoding when supplying the response. The only response filter currently supported is *parts*:

|  |  |
| --- | --- |
| parts[Index] | The body of a particular part of a multipart response. |

# set_response_file method ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Sets a file to be served as a response.

## Syntax

*Rust Syntax*

```text
fn set_response_file(&self, connection_id : i64, file_name : &str, content_type : &str, response_filter : &str, more_to_follow : bool) -> Result<(), SecureBlackboxError>
```

## Remarks

Use this property to provide the response content in a file. The *ResponseFilter* parameter lets you select the element of the response that you would like to set with this call. The empty filter stands for the entire response body.

Set the *MoreToFollow* parameter to true if you expect to provide more response data for this request. Setting *MoreToFollow* to true tells the server to use chunked encoding when supplying the response. The only response filter currently supported is *parts*:

|  |  |
| --- | --- |
| parts[Index] | The body of a particular part of a multipart response. |

# set_response_header method ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Sets a response header.

## Syntax

*Rust Syntax*

```text
fn set_response_header(&self, connection_id : i64, header_name : &str, value : &str) -> Result<(), SecureBlackboxError>
```

## Remarks

Use this method to set a response header. A good place to call this method is a request-marking event, such as [on_get_request](#on_get_request-event-httpserver-struct) or [on_post_request](#on_post_request-event-httpserver-struct).

# set_response_status method ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Sets an HTTP status to be sent with the response.

## Syntax

*Rust Syntax*

```text
fn set_response_status(&self, connection_id : i64, status_code : i32) -> Result<(), SecureBlackboxError>
```

## Remarks

Use this method to set an HTTP status for the request. A good place to call this method is a request-marking event, such as [on_get_request](#on_get_request-event-httpserver-struct).

# set_response_string method ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Sets a string to be served as a response.

## Syntax

*Rust Syntax*

```text
fn set_response_string(&self, connection_id : i64, data_str : &str, content_type : &str, response_filter : &str, more_to_follow : bool) -> Result<(), SecureBlackboxError>
```

## Remarks

Use this property to provide the response content in a string. The *ResponseFilter* parameter lets you select the element of the response that you would like to set with this call. The empty filter stands for the entire response body.

Set the *MoreToFollow* parameter to true if you expect to provide more response data for this request. Setting *MoreToFollow* to true tells the server to use chunked encoding when supplying the response. The only response filter currently supported is *parts*:

|  |  |
| --- | --- |
| parts[Index] | The body of a particular part of a multipart response. |

# start method ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Starts the server.

## Syntax

*Rust Syntax*

```text
fn start(&self) -> Result<(), SecureBlackboxError>
```

## Remarks

Use this method to activate the server and start listening to incoming connections.

# stop method ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Stops the server.

## Syntax

*Rust Syntax*

```text
fn stop(&self) -> Result<(), SecureBlackboxError>
```

## Remarks

Call this method to stop listening to incoming connections and deactivate the server.

# on_accept event ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Reports an incoming connection.

## Syntax

*Rust Syntax*

```text
// HTTPServerAcceptEventArgs carries the HTTPServer Accept event's parameters.
pub struct HTTPServerAcceptEventArgs {
  fn remote_address(&self) -> &String
  fn remote_port(&self) -> i32
  fn accept(&self) -> bool
  fn set_accept(&self, value : bool)
}

// HTTPServerAcceptEvent defines the signature of the HTTPServer Accept event's handler function.
pub trait HTTPServerAcceptEvent {
  fn on_accept(&self, sender : HTTPServer, e : &mut HTTPServerAcceptEventArgs);
}

impl <'a> HTTPServer<'a> {
  pub fn on_accept(&self) -> &'a dyn HTTPServerAcceptEvent;
  pub fn set_on_accept(&mut self, value : &'a dyn HTTPServerAcceptEvent);
  ...
}
```

## Remarks

This event is fired when a new connection from *RemoteAddress*:*RemotePort* is ready to be accepted. Use the *Accept* parameter to accept or decline it.

Subscribe to [on_connect](#on_connect-event-httpserver-struct) event to be notified of every connection that has been set up.

# on_auth_attempt event ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Fires when a connected client makes an authentication attempt.

## Syntax

*Rust Syntax*

```text
// HTTPServerAuthAttemptEventArgs carries the HTTPServer AuthAttempt event's parameters.
pub struct HTTPServerAuthAttemptEventArgs {
  fn connection_id(&self) -> i64
  fn http_method(&self) -> &String
  fn uri(&self) -> &String
  fn auth_method(&self) -> &String
  fn username(&self) -> &String
  fn password(&self) -> &String
  fn allow(&self) -> bool
  fn set_allow(&self, value : bool)
}

// HTTPServerAuthAttemptEvent defines the signature of the HTTPServer AuthAttempt event's handler function.
pub trait HTTPServerAuthAttemptEvent {
  fn on_auth_attempt(&self, sender : HTTPServer, e : &mut HTTPServerAuthAttemptEventArgs);
}

impl <'a> HTTPServer<'a> {
  pub fn on_auth_attempt(&self) -> &'a dyn HTTPServerAuthAttemptEvent;
  pub fn set_on_auth_attempt(&mut self, value : &'a dyn HTTPServerAuthAttemptEvent);
  ...
}
```

## Remarks

The struct fires this event whenever a client attempts to authenticate itself. Use the *Allow* parameter to let the client through.

*ConnectionID* contains the unique session identifier for that client, *HTTPMethod* specifies the HTTP method (GET, POST, etc.) used to access the *URI* resource, *AuthMethod* specifies the authentication method, and *Username* and *Password* contain the professed credentials.

**Note:** In case of OAuth 2.0 authentication, *Password* contains an access token to be validated.

# on_connect event ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Reports an accepted connection.

## Syntax

*Rust Syntax*

```text
// HTTPServerConnectEventArgs carries the HTTPServer Connect event's parameters.
pub struct HTTPServerConnectEventArgs {
  fn connection_id(&self) -> i64
  fn remote_address(&self) -> &String
  fn remote_port(&self) -> i32
}

// HTTPServerConnectEvent defines the signature of the HTTPServer Connect event's handler function.
pub trait HTTPServerConnectEvent {
  fn on_connect(&self, sender : HTTPServer, e : &mut HTTPServerConnectEventArgs);
}

impl <'a> HTTPServer<'a> {
  pub fn on_connect(&self) -> &'a dyn HTTPServerConnectEvent;
  pub fn set_on_connect(&mut self, value : &'a dyn HTTPServerConnectEvent);
  ...
}
```

## Remarks

The struct fires this event to report that a new connection has been established. *ConnectionId* indicates the unique ID assigned to this connection. The same ID will be supplied to any other events related to this connection, such as [on_tls_handshake](#on_tls_handshake-event-httpserver-struct) or [on_data](#on_data-event-httpserver-struct).

# on_custom_request event ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Reports a request of a non-standard type (method).

## Syntax

*Rust Syntax*

```text
// HTTPServerCustomRequestEventArgs carries the HTTPServer CustomRequest event's parameters.
pub struct HTTPServerCustomRequestEventArgs {
  fn connection_id(&self) -> i64
  fn uri(&self) -> &String
  fn http_method(&self) -> &String
  fn handled(&self) -> bool
  fn set_handled(&self, value : bool)
}

// HTTPServerCustomRequestEvent defines the signature of the HTTPServer CustomRequest event's handler function.
pub trait HTTPServerCustomRequestEvent {
  fn on_custom_request(&self, sender : HTTPServer, e : &mut HTTPServerCustomRequestEventArgs);
}

impl <'a> HTTPServer<'a> {
  pub fn on_custom_request(&self) -> &'a dyn HTTPServerCustomRequestEvent;
  pub fn set_on_custom_request(&mut self, value : &'a dyn HTTPServerCustomRequestEvent);
  ...
}
```

## Remarks

The struct fires this event to notify the application about a non-standard request received from the client. The *HTTPMethod* contains the non-standard HTTP method.

*ConnectionID* indicates the connection that sent the request and *URI* suggests the requested resource.

Set *Handled* to true to indicate that your application's code will take care of the request. The application does it by providing the necessary details via [set_response_status](#set_response_status-method-httpserver-struct), [set_response_header](#set_response_header-method-httpserver-struct), and [set_response_file](#set_response_file-method-httpserver-struct) methods. If the returned value of *Handled* is false, the server will try to take care of the request automatically by searching for the requested resource in [document_root](#document_root-property-httpserver-struct).

# on_data event ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Supplies a data chunk received within a POST or PUT upload.

## Syntax

*Rust Syntax*

```text
// HTTPServerDataEventArgs carries the HTTPServer Data event's parameters.
pub struct HTTPServerDataEventArgs {
  fn connection_id(&self) -> i64
  fn buffer(&self) -> &[u8]
}

// HTTPServerDataEvent defines the signature of the HTTPServer Data event's handler function.
pub trait HTTPServerDataEvent {
  fn on_data(&self, sender : HTTPServer, e : &mut HTTPServerDataEventArgs);
}

impl <'a> HTTPServer<'a> {
  pub fn on_data(&self) -> &'a dyn HTTPServerDataEvent;
  pub fn set_on_data(&mut self, value : &'a dyn HTTPServerDataEvent);
  ...
}
```

## Remarks

This event is fired to supply another piece of data received within a POST or PUT upload operation. This event may fire multiple times during a single request upload to pass the uploaded data to the application chunk-by-chunk.

# on_delete_request event ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Reports a DELETE request.

## Syntax

*Rust Syntax*

```text
// HTTPServerDeleteRequestEventArgs carries the HTTPServer DeleteRequest event's parameters.
pub struct HTTPServerDeleteRequestEventArgs {
  fn connection_id(&self) -> i64
  fn uri(&self) -> &String
  fn handled(&self) -> bool
  fn set_handled(&self, value : bool)
}

// HTTPServerDeleteRequestEvent defines the signature of the HTTPServer DeleteRequest event's handler function.
pub trait HTTPServerDeleteRequestEvent {
  fn on_delete_request(&self, sender : HTTPServer, e : &mut HTTPServerDeleteRequestEventArgs);
}

impl <'a> HTTPServer<'a> {
  pub fn on_delete_request(&self) -> &'a dyn HTTPServerDeleteRequestEvent;
  pub fn set_on_delete_request(&mut self, value : &'a dyn HTTPServerDeleteRequestEvent);
  ...
}
```

## Remarks

The struct fires this event to notify the application about a DELETE request received from the client.

*ConnectionID* indicates the connection that sent the request and *URI* suggests the requested resource.

Set *Handled* to true to indicate that your application's code will take care of the request. The application does it by providing the necessary details via [set_response_status](#set_response_status-method-httpserver-struct), [set_response_header](#set_response_header-method-httpserver-struct), and [set_response_file](#set_response_file-method-httpserver-struct) methods. If the returned value of *Handled* is false, the server will try to take care of the request automatically by searching for the requested resource in [document_root](#document_root-property-httpserver-struct).

# on_disconnect event ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Fires to report a disconnected client.

## Syntax

*Rust Syntax*

```text
// HTTPServerDisconnectEventArgs carries the HTTPServer Disconnect event's parameters.
pub struct HTTPServerDisconnectEventArgs {
  fn connection_id(&self) -> i64
}

// HTTPServerDisconnectEvent defines the signature of the HTTPServer Disconnect event's handler function.
pub trait HTTPServerDisconnectEvent {
  fn on_disconnect(&self, sender : HTTPServer, e : &mut HTTPServerDisconnectEventArgs);
}

impl <'a> HTTPServer<'a> {
  pub fn on_disconnect(&self) -> &'a dyn HTTPServerDisconnectEvent;
  pub fn set_on_disconnect(&mut self, value : &'a dyn HTTPServerDisconnectEvent);
  ...
}
```

## Remarks

The struct fires this event when a connected client disconnects.

# on_error event ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Information about errors during data delivery.

## Syntax

*Rust Syntax*

```text
// HTTPServerErrorEventArgs carries the HTTPServer Error event's parameters.
pub struct HTTPServerErrorEventArgs {
  fn connection_id(&self) -> i64
  fn error_code(&self) -> i32
  fn fatal(&self) -> bool
  fn remote(&self) -> bool
  fn description(&self) -> &String
}

// HTTPServerErrorEvent defines the signature of the HTTPServer Error event's handler function.
pub trait HTTPServerErrorEvent {
  fn on_error(&self, sender : HTTPServer, e : &mut HTTPServerErrorEventArgs);
}

impl <'a> HTTPServer<'a> {
  pub fn on_error(&self) -> &'a dyn HTTPServerErrorEvent;
  pub fn set_on_error(&mut self, value : &'a dyn HTTPServerErrorEvent);
  ...
}
```

## Remarks

The event is fired in case of exceptional conditions during message processing.

*ErrorCode* contains an error code and *Description* contains a textual description of the error. For a list of valid error codes and their descriptions, please refer to the [HTTPS](#trappable-errors-httpserver-struct) section.

# on_external_sign event ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Handles remote or external signing initiated by the server protocol.

## Syntax

*Rust Syntax*

```text
// HTTPServerExternalSignEventArgs carries the HTTPServer ExternalSign event's parameters.
pub struct HTTPServerExternalSignEventArgs {
  fn connection_id(&self) -> i64
  fn operation_id(&self) -> &String
  fn hash_algorithm(&self) -> &String
  fn pars(&self) -> &String
  fn data(&self) -> &String
  fn signed_data(&self) -> &String
  fn set_signed_data(&self, value : &str)
  fn set_signed_data_ref(&self, value : &String)
}

// HTTPServerExternalSignEvent defines the signature of the HTTPServer ExternalSign event's handler function.
pub trait HTTPServerExternalSignEvent {
  fn on_external_sign(&self, sender : HTTPServer, e : &mut HTTPServerExternalSignEventArgs);
}

impl <'a> HTTPServer<'a> {
  pub fn on_external_sign(&self) -> &'a dyn HTTPServerExternalSignEvent;
  pub fn set_on_external_sign(&mut self, value : &'a dyn HTTPServerExternalSignEvent);
  ...
}
```

## Remarks

Assign a handler to this event if you need to delegate a low-level signing operation to an external, remote, or custom signing engine. Depending on the settings, the handler will receive a hashed or unhashed value to be signed.

The event handler must pass the value of *Data* to the signer, obtain the signature, and pass it back to the struct via the *SignedData* parameter.

*OperationId* provides a comment about the operation and its origin. It depends on the exact struct being used, and may be empty. *HashAlgorithm* specifies the hash algorithm being used for the operation, and *Pars* contains algorithm-dependent parameters.

The struct uses base16 (hex) encoding for the *Data*, *SignedData*, and *Pars* parameters. If your signing engine uses a different input and output encoding, you may need to decode and/or encode the data before and/or after the signing.

A sample MD5 hash encoded in base16: a0dee2a0382afbb09120ffa7ccd8a152 - lower case base16 A0DEE2A0382AFBB09120FFA7CCD8A152 - upper case base16

A sample event handler that uses the .NET RSACryptoServiceProvider class may look like the following:

```text
signer.OnExternalSign += (s, e) =>
{
       var cert = new X509Certificate2("cert.pfx", "", X509KeyStorageFlags.Exportable);
       var key = (RSACryptoServiceProvider)cert.PrivateKey;

       var dataToSign = e.Data.FromBase16String();
       var signedData = key.SignHash(dataToSign, "2.16.840.1.101.3.4.2.1");
       e.SignedData = signedData.ToBase16String();
};
```

# on_file_error event ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Reports a file access error to the application.

## Syntax

*Rust Syntax*

```text
// HTTPServerFileErrorEventArgs carries the HTTPServer FileError event's parameters.
pub struct HTTPServerFileErrorEventArgs {
  fn connection_id(&self) -> i64
  fn file_name(&self) -> &String
  fn error_code(&self) -> i32
}

// HTTPServerFileErrorEvent defines the signature of the HTTPServer FileError event's handler function.
pub trait HTTPServerFileErrorEvent {
  fn on_file_error(&self, sender : HTTPServer, e : &mut HTTPServerFileErrorEventArgs);
}

impl <'a> HTTPServer<'a> {
  pub fn on_file_error(&self) -> &'a dyn HTTPServerFileErrorEvent;
  pub fn set_on_file_error(&mut self, value : &'a dyn HTTPServerFileErrorEvent);
  ...
}
```

## Remarks

The struct uses this event to report a file access errors. *FileName* and *ErrorCode* contain the file path and the error code respectively.

# on_get_request event ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Reports a GET request.

## Syntax

*Rust Syntax*

```text
// HTTPServerGetRequestEventArgs carries the HTTPServer GetRequest event's parameters.
pub struct HTTPServerGetRequestEventArgs {
  fn connection_id(&self) -> i64
  fn uri(&self) -> &String
  fn handled(&self) -> bool
  fn set_handled(&self, value : bool)
}

// HTTPServerGetRequestEvent defines the signature of the HTTPServer GetRequest event's handler function.
pub trait HTTPServerGetRequestEvent {
  fn on_get_request(&self, sender : HTTPServer, e : &mut HTTPServerGetRequestEventArgs);
}

impl <'a> HTTPServer<'a> {
  pub fn on_get_request(&self) -> &'a dyn HTTPServerGetRequestEvent;
  pub fn set_on_get_request(&mut self, value : &'a dyn HTTPServerGetRequestEvent);
  ...
}
```

## Remarks

The struct fires this event to notify the application about a GET request received from the client.

*ConnectionID* indicates the connection that sent the request and *URI* suggests the requested resource.

Set *Handled* to true to indicate that your application's code will take care of the request. The application does it by providing the necessary details via [set_response_status](#set_response_status-method-httpserver-struct), [set_response_header](#set_response_header-method-httpserver-struct), [set_response_file](#set_response_file-method-httpserver-struct) or [set_response_string](#set_response_string-method-httpserver-struct) methods. If the returned value of *Handled* is false, the server will try to take care of the request automatically by searching for the requested resource in [document_root](#document_root-property-httpserver-struct).

# on_headers_prepared event ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Fires when the response headers have been formed and are ready to be sent to the server.

## Syntax

*Rust Syntax*

```text
// HTTPServerHeadersPreparedEventArgs carries the HTTPServer HeadersPrepared event's parameters.
pub struct HTTPServerHeadersPreparedEventArgs {
  fn connection_id(&self) -> i64
}

// HTTPServerHeadersPreparedEvent defines the signature of the HTTPServer HeadersPrepared event's handler function.
pub trait HTTPServerHeadersPreparedEvent {
  fn on_headers_prepared(&self, sender : HTTPServer, e : &mut HTTPServerHeadersPreparedEventArgs);
}

impl <'a> HTTPServer<'a> {
  pub fn on_headers_prepared(&self) -> &'a dyn HTTPServerHeadersPreparedEvent;
  pub fn set_on_headers_prepared(&mut self, value : &'a dyn HTTPServerHeadersPreparedEvent);
  ...
}
```

## Remarks

The struct fires this event when the response headers are ready to be sent to the server. *ConnectionID* indicates the connection that processed the request.

Use [get_response_header](#get_response_header-method-httpserver-struct) method with an empty header name to get the whole response header.

# on_head_request event ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Reports a HEAD request.

## Syntax

*Rust Syntax*

```text
// HTTPServerHeadRequestEventArgs carries the HTTPServer HeadRequest event's parameters.
pub struct HTTPServerHeadRequestEventArgs {
  fn connection_id(&self) -> i64
  fn uri(&self) -> &String
  fn handled(&self) -> bool
  fn set_handled(&self, value : bool)
}

// HTTPServerHeadRequestEvent defines the signature of the HTTPServer HeadRequest event's handler function.
pub trait HTTPServerHeadRequestEvent {
  fn on_head_request(&self, sender : HTTPServer, e : &mut HTTPServerHeadRequestEventArgs);
}

impl <'a> HTTPServer<'a> {
  pub fn on_head_request(&self) -> &'a dyn HTTPServerHeadRequestEvent;
  pub fn set_on_head_request(&mut self, value : &'a dyn HTTPServerHeadRequestEvent);
  ...
}
```

## Remarks

The struct fires this event to notify the application about a HEAD request received from the client.

*ConnectionID* indicates the connection that sent the request and *URI* suggests the requested resource.

Set *Handled* to true to indicate that your application's code will take care of the request. The application does it by providing the necessary details via [set_response_status](#set_response_status-method-httpserver-struct), [set_response_header](#set_response_header-method-httpserver-struct), and [set_response_file](#set_response_file-method-httpserver-struct) methods. If the returned value of *Handled* is false, the server will try to take care of the request automatically by searching for the requested resource in [document_root](#document_root-property-httpserver-struct).

# on_next_chunk event ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Fires to request a next chunk of multi-chunk data from the application.

## Syntax

*Rust Syntax*

```text
// HTTPServerNextChunkEventArgs carries the HTTPServer NextChunk event's parameters.
pub struct HTTPServerNextChunkEventArgs {
  fn connection_id(&self) -> i64
  fn uri(&self) -> &String
  fn wait_for(&self) -> i32
  fn set_wait_for(&self, value : i32)
}

// HTTPServerNextChunkEvent defines the signature of the HTTPServer NextChunk event's handler function.
pub trait HTTPServerNextChunkEvent {
  fn on_next_chunk(&self, sender : HTTPServer, e : &mut HTTPServerNextChunkEventArgs);
}

impl <'a> HTTPServer<'a> {
  pub fn on_next_chunk(&self) -> &'a dyn HTTPServerNextChunkEvent;
  pub fn set_on_next_chunk(&mut self, value : &'a dyn HTTPServerNextChunkEvent);
  ...
}
```

## Remarks

The server fires this event when serving multi-chunk responses to request another chunk to be sent to the client. A handler of this event is expected to pass the chunk via one of [set_response_bytes](#set_response_bytes-method-httpserver-struct), [set_response_string](#set_response_string-method-httpserver-struct), or set_response_stream methods.

Use *WaitFor* parameter to specify the interval, in milliseconds, to wait before requesting the subsequent chunk.

# on_notification event ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

This event notifies the application about an underlying control flow event.

## Syntax

*Rust Syntax*

```text
// HTTPServerNotificationEventArgs carries the HTTPServer Notification event's parameters.
pub struct HTTPServerNotificationEventArgs {
  fn event_id(&self) -> &String
  fn event_param(&self) -> &String
}

// HTTPServerNotificationEvent defines the signature of the HTTPServer Notification event's handler function.
pub trait HTTPServerNotificationEvent {
  fn on_notification(&self, sender : HTTPServer, e : &mut HTTPServerNotificationEventArgs);
}

impl <'a> HTTPServer<'a> {
  pub fn on_notification(&self) -> &'a dyn HTTPServerNotificationEvent;
  pub fn set_on_notification(&mut self, value : &'a dyn HTTPServerNotificationEvent);
  ...
}
```

## Remarks

The struct fires this event to let the application know about some event, occurrence, or milestone in the struct. For example, it may fire to report completion of the document processing. The list of events being reported is not fixed, and may be flexibly extended over time.

The unique identifier of the event is provided in the *EventID* parameter. *EventParam* contains any parameters accompanying the occurrence. Depending on the type of the struct, the exact action it is performing, or the document being processed, one or both may be omitted.

|  |  |  |
| --- | --- | --- |
| EventID | EventParam | Description |
| OAuthResolveUserID | ConnectionID=...;UserID=... | Fired when the struct needs to get the username on this server by the user ID on the authentication server. It is required to provide the corresponding username by calling Config("OAuthLocalUser[ConnectionID]=<username>") |

# on_options_request event ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Reports an OPTIONS request.

## Syntax

*Rust Syntax*

```text
// HTTPServerOptionsRequestEventArgs carries the HTTPServer OptionsRequest event's parameters.
pub struct HTTPServerOptionsRequestEventArgs {
  fn connection_id(&self) -> i64
  fn uri(&self) -> &String
  fn handled(&self) -> bool
  fn set_handled(&self, value : bool)
}

// HTTPServerOptionsRequestEvent defines the signature of the HTTPServer OptionsRequest event's handler function.
pub trait HTTPServerOptionsRequestEvent {
  fn on_options_request(&self, sender : HTTPServer, e : &mut HTTPServerOptionsRequestEventArgs);
}

impl <'a> HTTPServer<'a> {
  pub fn on_options_request(&self) -> &'a dyn HTTPServerOptionsRequestEvent;
  pub fn set_on_options_request(&mut self, value : &'a dyn HTTPServerOptionsRequestEvent);
  ...
}
```

## Remarks

The struct fires this event to notify the application about an OPTIONS request received from the client.

*ConnectionID* indicates the connection that sent the request and *URI* suggests the requested resource.

Set *Handled* to true to indicate that your application's code will take care of the request. The application does it by providing the necessary details via [set_response_status](#set_response_status-method-httpserver-struct), [set_response_header](#set_response_header-method-httpserver-struct), and [set_response_file](#set_response_file-method-httpserver-struct) methods. If the returned value of *Handled* is false, the server will try to take care of the request automatically by searching for the requested resource in [document_root](#document_root-property-httpserver-struct).

# on_patch_request event ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Reports a PATCH request.

## Syntax

*Rust Syntax*

```text
// HTTPServerPatchRequestEventArgs carries the HTTPServer PatchRequest event's parameters.
pub struct HTTPServerPatchRequestEventArgs {
  fn connection_id(&self) -> i64
  fn uri(&self) -> &String
  fn handled(&self) -> bool
  fn set_handled(&self, value : bool)
}

// HTTPServerPatchRequestEvent defines the signature of the HTTPServer PatchRequest event's handler function.
pub trait HTTPServerPatchRequestEvent {
  fn on_patch_request(&self, sender : HTTPServer, e : &mut HTTPServerPatchRequestEventArgs);
}

impl <'a> HTTPServer<'a> {
  pub fn on_patch_request(&self) -> &'a dyn HTTPServerPatchRequestEvent;
  pub fn set_on_patch_request(&mut self, value : &'a dyn HTTPServerPatchRequestEvent);
  ...
}
```

## Remarks

The struct fires this event to notify the application about a PATCH request received from the client.

*ConnectionID* indicates the connection that sent the request and *URI* suggests the requested resource.

Set *Handled* to true to indicate that your application's code will take care of the request. The application does it by providing the necessary details via [set_response_status](#set_response_status-method-httpserver-struct), [set_response_header](#set_response_header-method-httpserver-struct), and [set_response_file](#set_response_file-method-httpserver-struct) methods. If the returned value of *Handled* is false, the server will try to take care of the request automatically by searching for the requested resource in [document_root](#document_root-property-httpserver-struct).

# on_post_request event ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Reports a POST request.

## Syntax

*Rust Syntax*

```text
// HTTPServerPostRequestEventArgs carries the HTTPServer PostRequest event's parameters.
pub struct HTTPServerPostRequestEventArgs {
  fn connection_id(&self) -> i64
  fn uri(&self) -> &String
  fn handled(&self) -> bool
  fn set_handled(&self, value : bool)
}

// HTTPServerPostRequestEvent defines the signature of the HTTPServer PostRequest event's handler function.
pub trait HTTPServerPostRequestEvent {
  fn on_post_request(&self, sender : HTTPServer, e : &mut HTTPServerPostRequestEventArgs);
}

impl <'a> HTTPServer<'a> {
  pub fn on_post_request(&self) -> &'a dyn HTTPServerPostRequestEvent;
  pub fn set_on_post_request(&mut self, value : &'a dyn HTTPServerPostRequestEvent);
  ...
}
```

## Remarks

The struct fires this event to notify the application about a POST request received from the client.

*ConnectionID* indicates the connection that sent the request and *URI* suggests the requested resource.

Set *Handled* to true to indicate that your application's code will take care of the request. The application does it by providing the necessary details via [set_response_status](#set_response_status-method-httpserver-struct), [set_response_header](#set_response_header-method-httpserver-struct), and [set_response_file](#set_response_file-method-httpserver-struct) methods. If the returned value of *Handled* is false, the server will try to take care of the request automatically by searching for the requested resource in [document_root](#document_root-property-httpserver-struct).

# on_put_request event ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Reports a PUT request.

## Syntax

*Rust Syntax*

```text
// HTTPServerPutRequestEventArgs carries the HTTPServer PutRequest event's parameters.
pub struct HTTPServerPutRequestEventArgs {
  fn connection_id(&self) -> i64
  fn uri(&self) -> &String
  fn handled(&self) -> bool
  fn set_handled(&self, value : bool)
}

// HTTPServerPutRequestEvent defines the signature of the HTTPServer PutRequest event's handler function.
pub trait HTTPServerPutRequestEvent {
  fn on_put_request(&self, sender : HTTPServer, e : &mut HTTPServerPutRequestEventArgs);
}

impl <'a> HTTPServer<'a> {
  pub fn on_put_request(&self) -> &'a dyn HTTPServerPutRequestEvent;
  pub fn set_on_put_request(&mut self, value : &'a dyn HTTPServerPutRequestEvent);
  ...
}
```

## Remarks

The struct fires this event to notify the application about a PUT request received from the client.

*ConnectionID* indicates the connection that sent the request and *URI* suggests the requested resource.

Set *Handled* to true to indicate that your application's code will take care of the request. The application does it by providing the necessary details via [set_response_status](#set_response_status-method-httpserver-struct), [set_response_header](#set_response_header-method-httpserver-struct), and [set_response_file](#set_response_file-method-httpserver-struct) methods. If the returned value of *Handled* is false, the server will try to take care of the request automatically by searching for the requested resource in [document_root](#document_root-property-httpserver-struct).

# on_resource_access event ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Reports an attempt to access a resource.

## Syntax

*Rust Syntax*

```text
// HTTPServerResourceAccessEventArgs carries the HTTPServer ResourceAccess event's parameters.
pub struct HTTPServerResourceAccessEventArgs {
  fn connection_id(&self) -> i64
  fn http_method(&self) -> &String
  fn uri(&self) -> &String
  fn allow(&self) -> bool
  fn set_allow(&self, value : bool)
  fn redirect_uri(&self) -> &String
  fn set_redirect_uri(&self, value : &str)
  fn set_redirect_uri_ref(&self, value : &String)
}

// HTTPServerResourceAccessEvent defines the signature of the HTTPServer ResourceAccess event's handler function.
pub trait HTTPServerResourceAccessEvent {
  fn on_resource_access(&self, sender : HTTPServer, e : &mut HTTPServerResourceAccessEventArgs);
}

impl <'a> HTTPServer<'a> {
  pub fn on_resource_access(&self) -> &'a dyn HTTPServerResourceAccessEvent;
  pub fn set_on_resource_access(&mut self, value : &'a dyn HTTPServerResourceAccessEvent);
  ...
}
```

## Remarks

The struct fires this event to notify the application about a request received from the client. The *HTTPMethod* parameter indicates the HTTP method used (GET, POST, etc.)

*ConnectionID* indicates the connection that sent the request and *URI* suggests the requested resource.

Set *Allow* to false to prevent the client from accessing the resource. The struct will automatically send a "forbidden" status code (403).

Set a non-empty value to *RedirectURI* to notify the client that the resource has moved to another place. The struct will automatically send a "found" status code (302). If *Allow* is set to false, the value of *RedirectURI* is ignored.

# on_tls_cert_validate event ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Fires when a client certificate needs to be validated.

## Syntax

*Rust Syntax*

```text
// HTTPServerTLSCertValidateEventArgs carries the HTTPServer TLSCertValidate event's parameters.
pub struct HTTPServerTLSCertValidateEventArgs {
  fn connection_id(&self) -> i64
  fn accept(&self) -> bool
  fn set_accept(&self, value : bool)
}

// HTTPServerTLSCertValidateEvent defines the signature of the HTTPServer TLSCertValidate event's handler function.
pub trait HTTPServerTLSCertValidateEvent {
  fn on_tls_cert_validate(&self, sender : HTTPServer, e : &mut HTTPServerTLSCertValidateEventArgs);
}

impl <'a> HTTPServer<'a> {
  pub fn on_tls_cert_validate(&self) -> &'a dyn HTTPServerTLSCertValidateEvent;
  pub fn set_on_tls_cert_validate(&mut self, value : &'a dyn HTTPServerTLSCertValidateEvent);
  ...
}
```

## Remarks

The struct fires this event to notify the application of an authenticating client. Use the event handler to validate the certificate and pass your decision back to the server component via the *Accept* parameter.

# on_tls_established event ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Reports the setup of a TLS session.

## Syntax

*Rust Syntax*

```text
// HTTPServerTLSEstablishedEventArgs carries the HTTPServer TLSEstablished event's parameters.
pub struct HTTPServerTLSEstablishedEventArgs {
  fn connection_id(&self) -> i64
}

// HTTPServerTLSEstablishedEvent defines the signature of the HTTPServer TLSEstablished event's handler function.
pub trait HTTPServerTLSEstablishedEvent {
  fn on_tls_established(&self, sender : HTTPServer, e : &mut HTTPServerTLSEstablishedEventArgs);
}

impl <'a> HTTPServer<'a> {
  pub fn on_tls_established(&self) -> &'a dyn HTTPServerTLSEstablishedEvent;
  pub fn set_on_tls_established(&mut self, value : &'a dyn HTTPServerTLSEstablishedEvent);
  ...
}
```

## Remarks

Subscribe to this event to be notified about the setup of a TLS connection by a connected client.

# on_tls_handshake event ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Fires when a newly established client connection initiates a TLS handshake.

## Syntax

*Rust Syntax*

```text
// HTTPServerTLSHandshakeEventArgs carries the HTTPServer TLSHandshake event's parameters.
pub struct HTTPServerTLSHandshakeEventArgs {
  fn connection_id(&self) -> i64
  fn server_name(&self) -> &String
  fn abort(&self) -> bool
  fn set_abort(&self, value : bool)
}

// HTTPServerTLSHandshakeEvent defines the signature of the HTTPServer TLSHandshake event's handler function.
pub trait HTTPServerTLSHandshakeEvent {
  fn on_tls_handshake(&self, sender : HTTPServer, e : &mut HTTPServerTLSHandshakeEventArgs);
}

impl <'a> HTTPServer<'a> {
  pub fn on_tls_handshake(&self) -> &'a dyn HTTPServerTLSHandshakeEvent;
  pub fn set_on_tls_handshake(&mut self, value : &'a dyn HTTPServerTLSHandshakeEvent);
  ...
}
```

## Remarks

Use this event to get notified about the initiation of the TLS handshake by the remote client. The *ServerName* parameter specifies the requested host from the client hello message.

# on_tls_psk event ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Requests a pre-shared key for TLS-PSK.

## Syntax

*Rust Syntax*

```text
// HTTPServerTLSPSKEventArgs carries the HTTPServer TLSPSK event's parameters.
pub struct HTTPServerTLSPSKEventArgs {
  fn connection_id(&self) -> i64
  fn identity(&self) -> &String
  fn psk(&self) -> &String
  fn set_psk(&self, value : &str)
  fn set_psk_ref(&self, value : &String)
  fn ciphersuite(&self) -> &String
  fn set_ciphersuite(&self, value : &str)
  fn set_ciphersuite_ref(&self, value : &String)
}

// HTTPServerTLSPSKEvent defines the signature of the HTTPServer TLSPSK event's handler function.
pub trait HTTPServerTLSPSKEvent {
  fn on_tls_psk(&self, sender : HTTPServer, e : &mut HTTPServerTLSPSKEventArgs);
}

impl <'a> HTTPServer<'a> {
  pub fn on_tls_psk(&self) -> &'a dyn HTTPServerTLSPSKEvent;
  pub fn set_on_tls_psk(&mut self, value : &'a dyn HTTPServerTLSPSKEvent);
  ...
}
```

## Remarks

The struct fires this event to report that a client has requested a TLS-PSK negotiation. *ConnectionId* indicates the unique connection ID that requested the PSK handshake.

Use *Identity* to look up for the corresponding pre-shared key in the server's database, then assign the key to the *PSK* parameter. If TLS 1.3 PSK is used, you will also need to assign the *Ciphersuite* parameter with the cipher suite associated with that identity and their key.

# on_tls_shutdown event ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Reports closure of a TLS session.

## Syntax

*Rust Syntax*

```text
// HTTPServerTLSShutdownEventArgs carries the HTTPServer TLSShutdown event's parameters.
pub struct HTTPServerTLSShutdownEventArgs {
  fn connection_id(&self) -> i64
}

// HTTPServerTLSShutdownEvent defines the signature of the HTTPServer TLSShutdown event's handler function.
pub trait HTTPServerTLSShutdownEvent {
  fn on_tls_shutdown(&self, sender : HTTPServer, e : &mut HTTPServerTLSShutdownEventArgs);
}

impl <'a> HTTPServer<'a> {
  pub fn on_tls_shutdown(&self) -> &'a dyn HTTPServerTLSShutdownEvent;
  pub fn set_on_tls_shutdown(&mut self, value : &'a dyn HTTPServerTLSShutdownEvent);
  ...
}
```

## Remarks

The struct fires this event when a connected client closes their TLS session gracefully. This event is typically followed by a [on_disconnect](#on_disconnect-event-httpserver-struct), which marks the closure of the underlying TCP session.

# on_trace_request event ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

Reports a TRACE request.

## Syntax

*Rust Syntax*

```text
// HTTPServerTraceRequestEventArgs carries the HTTPServer TraceRequest event's parameters.
pub struct HTTPServerTraceRequestEventArgs {
  fn connection_id(&self) -> i64
  fn uri(&self) -> &String
  fn handled(&self) -> bool
  fn set_handled(&self, value : bool)
}

// HTTPServerTraceRequestEvent defines the signature of the HTTPServer TraceRequest event's handler function.
pub trait HTTPServerTraceRequestEvent {
  fn on_trace_request(&self, sender : HTTPServer, e : &mut HTTPServerTraceRequestEventArgs);
}

impl <'a> HTTPServer<'a> {
  pub fn on_trace_request(&self) -> &'a dyn HTTPServerTraceRequestEvent;
  pub fn set_on_trace_request(&mut self, value : &'a dyn HTTPServerTraceRequestEvent);
  ...
}
```

## Remarks

The struct fires this event to notify the application about a TRACE request received from the client.

*ConnectionID* indicates the connection that sent the request and *URI* suggests the requested resource.

Set *Handled* to true to indicate that your application's code will take care of the request. The application does it by providing the necessary details via [set_response_status](#set_response_status-method-httpserver-struct), [set_response_header](#set_response_header-method-httpserver-struct), and [set_response_file](#set_response_file-method-httpserver-struct) methods. If the returned value of *Handled* is false, the server will try to take care of the request automatically by searching for the requested resource in [document_root](#document_root-property-httpserver-struct).

# Config Settings ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

 The struct accepts one or more of the following *configuration settings*. Configuration settings are similar in functionality to properties, but they are rarely used. In order to avoid "polluting" the property namespace of the struct, access to these *internal properties* is provided through the [config](#config-method-httpserver-struct) method.

### HTTPServer Config Settings

**AllowKeepAlive**: Enables or disables keep-alive mode.Use this property to enable or disable the keep-alive connection mode. If keep-alive is enabled, clients that choose to use it may stay connected for a while.

**AllowOptionsResponseWithoutAuth**: Enables unauthenticated responses to OPTIONS requests.Set this property to true to allow the server serve OPTIONS requests without prior authentication of the client.

**AuthBasic**: Turns on/off the basic authentication.When switched on, connecting clients can use the basic authentication.

**AuthDigest**: Turns on/off the digest authentication.When switched on, connecting clients can use the digest authentication.

**AuthDigestExpire**: Specifies digest expiration time for digest authentication.Use this property to specify the digest expiration time for digest authentication, in seconds. The default setting is 20.

**AuthRealm**: Specifies authentication realm for digest and NTLM authentication.Specifies authentication realm for digest and NTLM authentication types.

**BoundAddress**: Returns the bound address of the listening socket.Use this property to obtain the bound address of the listening socket.

**BoundPort**: The port that was bound by the server.Returns the port number that was bound by the server.

**CompressionLevel**: The default compression level to use.Assign this property with the compression level (1 to 9) to apply for gzipped responses. 1 stands for the lightest but fastest compression, and 9 for the best but the slowest.

**DocumentRoot**: The document root of the server.Use this property to specify a local folder which is going to be the server's document root (the mount point of the virtual home directory).

**DualStack**: Allows the use of ip4 and ip6 simultaneously.This setting specifies a socket can use ip4 and ip6 simultaneously.

**HandshakeTimeout**: The HTTPS handshake timeout.The HTTPS handshake timeout in milliseconds.

**HomePage**: Specifies the home page resource name.Use this property to specify the home page (/) resource name.

**Host**: The host to bind to.Specifies a specific interface the server should listen on.

**OAuthAllowAccessByDefault**: Specifies whether access to a resource is allowed by default.Use this property to enable or disable access to a resource in case if no scopes defined or the resource doesn't match any of the user's scopes.

**OAuthAutoValidateTokens**: Allows to validate OAuth 2.0 access tokens automatically.Use this property to enable or disable pre-validation of access tokens.

**OAuthIntrospectionClientID**: Specifies a client ID on the authentication service.Use this property to provide a client ID for access token introspection.

**OAuthIntrospectionClientSecret**: Specifies a client secret on the authentication service.Use this property to provide a client secret for access token introspection.

**OAuthIntrospectionURL**: Specifies the URL to be used to introspect access tokens.Use this property to provide the URL for introspection.

**OAuthTokenValidationKeys**: Specifies JW keys in JSON format for validating access token signatures.

**Port**: The port to listen on.This config setting mimics the Port property. Please use that instead.

**PortRangeFrom**: The lower bound of allowed port scope to listen on.Specifies the lowest port number the server may use if dynamic allocation is used.

**PortRangeTo**: The higher bound of allowed port scope to listen on.Specifies the highest port number the server may use if dynamic allocation is used.

**PreSharedIdentityHint**: Gets or sets the PSK identity hint.Use this property to get or set the PSK identity hint to be used during PSK-based TLS handshake.

**RequestFilter**: The request string modifier.Use this property to tune up the request string as returned by GetRequestString method. Supported filters: params (request parameters only), params[Index] or params['Name'] (a specific request parameter), parts[Index] (the contents of a particular part of a multipart message). An empty request filter makes GetRequestString return the whole body of the request.

**SessionTimeout**: The HTTP session timeout.The HTTP session timeout in milliseconds.

**SleepLen**: Adjusts the server loop idling time.Use this property to adjust the server connection loop idling time between consecutive connection read calls. Increasing this setting may help combat excessive CPU usage in performance-restricted or busy environments. Setting it to zero removes the idling altogether, which maximizes the throughput but may cause excessive CPU load.

**TempDir**: A temporary directory to use.Specifies the temporary directory to use during server operation.

**TempPath**: Path for storing temporary files.This setting specifies an absolute path to the location on disk where temporary files are stored. This setting is supported only in the Java edition for all applicable signing components except [PDFSigner](PDFSigner.md#PDFSigner), where this limitation does not apply.

**TLSCiphersuites**: Returns the list of ciphersuites activated in the component for the current session.Check this property to enumerate the list of TLS ciphersuites enabled in the component. A good place to do that is OnTLSHandshake event handler.

**TLSExtensions**: TBD.TBD

**TLSGroups**: Returns the list of TLS key exchange groups enabled in the component.Check this property to enumerate the list of TLS key exchange groups enabled in the component.

**TLSPeerExtensions**: TBD.TBD

**TLSServerCertIndex**: Specifies the index of the server certificate to use.This setting allows your code to specify the exact certificate/chain to use for the TLS handshake that has just commenced, if your server is configured with more than one chain. This property should typically be adjusted from within the OnTLSHandshake event handler.

Note: the server component normally picks up the most appropriate certificate automatically. This setting is a wiretap for scenarios where unusual or cherry-picked certificate selection logic may be necessary.

**TLSVersions**: Returns the list of TLS versions enabled in the component.Check this property to obtain the list of TLS versions enabled in the component, as an integer bitmask.

**UseChunkedTransfer**: Enables chunked transfer.Use this property to enable chunked content encoding.

**UseCompression**: Enables or disables server-side compression.Use this property to enable or disable server-side content compression.

**WebsiteName**: The website name for the TLS certificate.Assign this property with a name to put in a self-generated TLS certificate.

### Base Config Settings

**ASN1UseGlobalTagCache**: Controls whether ASN.1 module should use a global object cache.This is a performance setting. It is unlikely that you will ever need to adjust it.

**AssignSystemSmartCardPins**: Specifies whether CSP-level PINs should be assigned to CNG keys.This is a low-level tweak for certain cryptographic providers. It is unlikely that you will ever need to adjust it.

**CheckKeyIntegrityBeforeUse**: Enables or disable private key integrity check before use.This global property enables or disables private key material check before each signing operation. This slows down performance a bit, but prevents a selection of attacks on RSA keys where keys with unknown origins are used.

You can switch this property off to improve performance if your project only uses known, good private keys.

**CookieCaching**: Specifies whether a cookie cache should be used for HTTP(S) transports.Set this property to enable or disable cookies caching for the struct.

Supported values are:

|  |  |  |
| --- | --- | --- |
| off |  | No caching (default) |
| local |  | Local caching |
| global |  | Global caching |

**Cookies**: Gets or sets local cookies for the struct.Use this property to get cookies from the internal cookie storage of the struct and/or restore them back between application sessions.

**DefDeriveKeyIterations**: Specifies the default key derivation algorithm iteration count.This global property sets the default number of iterations for all supported key derivation algorithms. Note that you can provide the required number of iterations by using properties of the relevant key generation component; this global setting is used in scenarios where specific iteration count is not or cannot be provided.

**DNSLocalSuffix**: The suffix to assign for TLD names.Use this global setting to adjust the default suffix to assign to top-level domain names. The default is *.local*.

**EnableClientSideSSLFFDHE**: Enables or disables finite field DHE key exchange support in TLS clients.This global property enables or disables support for finite field DHE key exchange methods in TLS clients. FF DHE is a slower algorithm if compared to EC DHE; enabling it may result in slower connections.

This setting only applies to sessions negotiated with TLS version 1.3.

**EnableSSHMLKEM**: Enables support for ML-KEM/hybrid key exchange algorithms in SSH client and server components.Use this setting to enable hybrid key exchange algorithms in client and server SSH and SFTP components. This is a global setting that enables ML-KEM blanketly in all SSH-dependent components.

**EnableTLSMLKEM**: Enables support for ML-KEM and hybrid groups in TLS client and server components.Use this setting to enable ML-KEM and hybrid key exchange groups in client and server TLS components. This is a global setting that enables ML-KEM blanketly in all TLS-dependent components.

**GlobalCookies**: Gets or sets global cookies for all the HTTP transports.Use this property to get cookies from the GLOBAL cookie storage or restore them back between application sessions. These cookies will be used by all the structs that have its *CookieCaching* property set to "global".

**HardwareCryptoUsePolicy**: The hardware crypto usage policy.This global setting controls the hardware cryptography usage policy.

Supported Values:

|  |  |
| --- | --- |
| auto | Use hardware cryptography if available; otherwise, fall back to software-based cryptography (default). |
| enable | Always attempt to use hardware cryptography. If unavailable, exception will be thrown. |
| disable | Do not use hardware cryptography. |

**HttpUserAgent**: Specifies the user agent name to be used by all HTTP clients.This global setting defines the User-Agent field of the HTTP request provides information about the software that initiates the request. This value will be used by all the HTTP clients including the ones used internally in other structs.

**HttpVersion**: The HTTP version to use in any inner HTTP client components created.Set this property to 1.0 or 1.1 to indicate the HTTP version that any internal HTTP clients should use.

**IgnoreExpiredMSCTLSigningCert**: Whether to tolerate the expired Windows Update signing certificate.It is not uncommon for Microsoft Windows Update Certificate Trust List to be signed with an expired Microsoft certificate. Setting this global property to true makes SBB ignore the expired factor and take the Trust List into account.

**ListDelimiter**: The delimiter character for multi-element lists.Allows to set the delimiter for any multi-entry values returned by the component as a string object, such as file lists. For most of the components, this property is set to a newline sequence.

**LogDestination**: Specifies the debug log destination.Contains a comma-separated list of values that specifies where debug log should be dumped.

Supported values are:

|  |  |  |
| --- | --- | --- |
| file |  | File |
| console |  | Console |
| systemlog |  | System Log (supported for Android only) |
| debugger |  | Debugger (supported for VCL for Windows and .Net) |

**LogDetails**: Specifies the debug log details to dump.Contains a comma-separated list of values that specifies which debug log details to dump.

Supported values are:

|  |  |  |
| --- | --- | --- |
| time |  | Current time |
| level |  | Level |
| package |  | Package name |
| module |  | Module name |
| class |  | Class name |
| method |  | Method name |
| threadid |  | Thread Id |
| contenttype |  | Content type |
| content |  | Content |
| all |  | All details |

**LogFile**: Specifies the debug log filename.Use this property to provide a path to the log file.

**LogFilters**: Specifies the debug log filters.Contains a comma-separated list of value pairs ("name:value") that describe filters.

Supported filter names are:

|  |  |  |
| --- | --- | --- |
| exclude-package |  | Exclude a package specified in the value |
| exclude-module |  | Exclude a module specified in the value |
| exclude-class |  | Exclude a class specified in the value |
| exclude-method |  | Exclude a method specified in the value |
| include-package |  | Include a package specified in the value |
| include-module |  | Include a module specified in the value |
| include-class |  | Include a class specified in the value |
| include-method |  | Include a method specified in the value |

**LogFlushMode**: Specifies the log flush mode.Use this property to set the log flush mode. The following values are defined:

|  |  |  |
| --- | --- | --- |
| none |  | No flush (caching only) |
| immediate |  | Immediate flush (real-time logging) |
| maxcount |  | Flush cached entries upon reaching LogMaxEventCount entries in the cache. |

**LogLevel**: Specifies the debug log level.Use this property to provide the desired debug log level.

Supported values are:

|  |  |  |
| --- | --- | --- |
| none |  | None (by default) |
| fatal |  | Severe errors that cause premature termination. |
| error |  | Other runtime errors or unexpected conditions. |
| warning |  | Use of deprecated APIs, poor use of API, 'almost' errors, other runtime situations that are undesirable or unexpected, but not necessarily "wrong". |
| info |  | Interesting runtime events (startup/shutdown). |
| debug |  | Detailed information on flow of through the system. |
| trace |  | More detailed information. |

**LogMaxEventCount**: Specifies the maximum number of events to cache before further action is taken.Use this property to specify the log event number threshold. This threshold may have different effects, depending on the rotation setting and/or the flush mode.

The default value of this setting is 100.

**LogRotationMode**: Specifies the log rotation mode.Use this property to set the log rotation mode. The following values are defined:

|  |  |  |
| --- | --- | --- |
| none |  | No rotation |
| deleteolder |  | Delete older entries from the cache upon reaching LogMaxEventCount |
| keepolder |  | Keep older entries in the cache upon reaching LogMaxEventCount (newer entries are discarded) |

**MaxASN1BufferLength**: Specifies the maximal allowed length for ASN.1 primitive tag data.This global property limits the maximal allowed length for ASN.1 tag data for non-content-carrying structures, such as certificates, CRLs, or timestamps. It does not affect structures that can carry content, such as CMS/CAdES messages. This is a security property aiming at preventing DoS attacks.

**MaxASN1TreeDepth**: Specifies the maximal depth for processed ASN.1 trees.This global property limits the maximal depth of ASN.1 trees that the component can handle without throwing an error. This is a security property aiming at preventing DoS attacks.

**OCSPHashAlgorithm**: Specifies the hash algorithm to be used to identify certificates in OCSP requests.This global setting defines the hash algorithm to use in OCSP requests during chain validation. Some OCSP responders can only use older algorithms, in which case setting this property to SHA1 may be helpful.

**OldClientSideRSAFallback**: Specifies whether the SSH client should use a SHA1 fallback.Tells the SSH client to use a legacy ssh-rsa authentication even if the server indicates support for newer algorithms, such as rsa-sha-256. This is a backward-compatibility tweak.

**PKICache**: Specifies which PKI elements (certificates, CRLs, OCSP responses) should be cached.The PKICache setting specifies which Public Key Infrastructure (PKI) elements should be cached to optimize performance and reduce retrieval times. It supports comma-separated values to indicate the specific types of PKI data that should be cached.

Supported Values:

|  |  |
| --- | --- |
| certificate | Enables caching of certificates. |
| crl | Enables caching of Certificate Revocation Lists (CRLs). |
| ocsp | Enables caching of OCSP (Online Certificate Status Protocol) responses. |

Example (default value):

```text
PKICache=certificate,crl,ocsp
```

 In this example, the component caches certificates, CRLs, and OCSP responses.

**PKICachePath**: Specifies the file system path where cached PKI data is stored.The PKICachePath setting defines the file system path where cached PKI data (e.g., certificates, CRLs, OCSP responses and Trusted Lists) will be stored. This allows the system to persistently save and retrieve PKI cache data, even across application restarts.

The default value is an empty string - no cached PKI data is stored on disk.

Example:

```text
PKICachePath=C:\Temp\cache
```

 In this example, the cached PKI data is stored in the C:\Temp\cache directory.

**ProductVersion**: Returns the version of the SecureBlackbox library.This property returns the long version string of the SecureBlackbox library being used (major.minor.build.revision).

**ServerSSLDHKeyLength**: Sets the size of the TLS DHE key exchange group.Use this property to adjust the length, in bits, of the DHE prime to be used by the TLS server.

**StaticDNS**: Specifies whether static DNS rules should be used.Set this property to enable or disable static DNS rules for the struct. Works only if *UseOwnDNSResolver* is set to *true*.

Supported values are:

|  |  |  |
| --- | --- | --- |
| none |  | No static DNS rules (default) |
| local |  | Local static DNS rules |
| global |  | Global static DNS rules |

**StaticIPAddress[domain]**: Gets or sets an IP address for the specified domain name.Use this property to get or set an IP address for the specified domain name in the internal (of the struct) or global DNS rules storage depending on the *StaticDNS* value. The type of the IP address (IPv4 or IPv6) is determined automatically. If both addresses are available, they are divided by the | (pipe) character.

**StaticIPAddresses**: Gets or sets all the static DNS rules.Use this property to get static DNS rules from the current rules storage or restore them back between application sessions. If *StaticDNS* of the struct is set to "*local*", the property returns/restores the rules from/to the internal storage of the struct. If *StaticDNS* of the struct is set to "*global*", the property returns/restores the rules from/to the GLOBAL storage. The rules list is returned and accepted in JSON format.

**Tag**: Allows to store any custom data.Use this config property to store any custom data.

**TLSSessionGroup**: Specifies the group name of TLS sessions to be used for session resumption.Use this property to limit the search of cached TLS sessions to the specified group. Sessions from other groups will be ignored. By default, all sessions are cached with an empty group name and available to all the structs.

**TLSSessionLifetime**: Specifies lifetime in seconds of the cached TLS session.Use this property to specify how much time the TLS session should be kept in the session cache. After this time, the session expires and will be automatically removed from the cache. Default value is 300 seconds (5 minutes).

**TLSSessionPurgeInterval**: Specifies how often the session cache should remove the expired TLS sessions.Use this property to specify the time interval of purging the expired TLS sessions from the session cache. Default value is 60 seconds (1 minute).

**UseCRLObjectCaching**: Specifies whether reuse of loaded CRL objects is enabled.This setting enables or disables the caching of CRL objects. When set to true (the default value), the system checks if a CRL object is already loaded in memory before attempting to load a new instance. If the object is found, the existing instance is reused, and its reference count is incremented to track its usage. When the reference count reaches zero, indicating that no references to the object remain, the system will free the object from memory. This setting enhances performance by minimizing unnecessary object instantiation and promotes efficient memory management, particularly in scenarios where CRL objects are frequently used.

**UseInternalRandom**: Switches between SecureBlackbox-own and platform PRNGs.Allows to switch between internal/native PRNG implementation and the one provided by the platform.

**UseLegacyAdESValidation**: Enables legacy AdES validation mode.Use this setting to switch the AdES component to the validation approach that was used in SBB 2020/SBB 2022 (less attention to temporal details).

**UseOCSPResponseObjectCaching**: Specifies whether reuse of loaded OCSP response objects is enabled.This setting enables or disables the caching of OCSP response objects. When set to true (the default value), the system checks if a OCSP response object is already loaded in memory before attempting to load a new instance. If the object is found, the existing instance is reused, and its reference count is incremented to track its usage. When the reference count reaches zero, indicating that no references to the object remain, the system will free the object from memory. This setting enhances performance by minimizing unnecessary object instantiation and promotes efficient memory management, particularly in scenarios where OCSP response objects are frequently used.

**UseOwnDNSResolver**: Specifies whether the client components should use own DNS resolver.Set this global property to false to force all the client components to use the DNS resolver provided by the target OS instead of using own one.

**UseSharedSystemStorages**: Specifies whether the validation engine should use a global per-process copy of the system certificate stores.Set this global property to false to make each validation run use its own copy of system certificate stores.

**UseSystemNativeSizeCalculation**: An internal CryptoAPI access tweak.This is an internal setting. Please do not use it unless instructed by the support team.

**UseSystemOAEPAndPSS**: Enforces or disables the use of system-driven RSA OAEP and PSS computations.This global setting defines who is responsible for performing RSA-OAEP and RSA-PSS computations where the private key is stored in a Windows system store and is exportable. If set to true, SBB will delegate the computations to Windows via a CryptoAPI call. Otherwise, it will export the key material and perform the computations using its own OAEP/PSS implementation.

This setting only applies to certificates originating from a Windows system store.

**UseSystemRandom**: Enables or disables the use of the OS PRNG.Use this global property to enable or disable the use of operating system-driven pseudorandom number generation.

**XMLRDNDescriptorName[OID]**: Defines an OID mapping to descriptor names for the certificate's IssuerRDN or SubjectRDN.This property defines custom mappings between Object Identifiers (OIDs) and descriptor names. This mapping specifies how the certificate's issuer and subject information (ds:IssuerRDN and ds:SubjectRDN elements respectively) are represented in XML signatures.

The property accepts comma-separated values where the first descriptor name is used when the OID is mapped, and subsequent values act as aliases for parsing.

Syntax:

```text
Config("XMLRDNDescriptorName[OID]=PrimaryName,Alias1,Alias2");
```

Where:

OID: The Object Identifier from the certificate's IssuerRDN or SubjectRDN that you want to map.

PrimaryName: The main descriptor name used in the XML signature when the OID is encountered.

Alias1, Alias2, ...: Optional alternative names recognized during parsing.

Usage Examples:

Map OID 2.5.4.5 to SERIALNUMBER:

```text
Config("XMLRDNDescriptorName[2.5.4.5]=SERIALNUMBER");
```

Map OID 1.2.840.113549.1.9.1 to E, with aliases EMAIL and EMAILADDRESS:

```text
Config("XMLRDNDescriptorName[1.2.840.113549.1.9.1]=E,EMAIL,EMAILADDRESS");
```

**XMLRDNDescriptorPriority[OID]**: Specifies the priority of descriptor names associated with a specific OID.This property specifies the priority of descriptor names associated with a specific OID that allows to reorder descriptors in the ds:IssuerRDN and ds:SubjectRDN elements during signing.

**XMLRDNDescriptorReverseOrder**: Specifies whether to reverse the order of descriptors in RDN.Specifies whether to reverse the order of descriptors in the ds:IssuerRDN and ds:SubjectRDN elements during XML signing. By default, this property is set to true (as specified in RFC 2253, 2.1).

**XMLRDNDescriptorSeparator**: Specifies the separator used between descriptors in RDN.Specifies the separator used between descriptors in the ds:IssuerRDN and ds:SubjectRDN elements during XML signing. By default, this property is set to ", " value.

# Trappable Errors ([HTTPServer](#struct-secureblackboxhttpserver) Struct)

### HTTPServer Errors

|  |  |
| --- | --- |
| 1048577 | Invalid parameter ([SB_ERROR_INVALID_PARAMETER](constants.md#const_SBERRORINVALIDPARAMETER)) |
| 1048578 | Invalid configuration ([SB_ERROR_INVALID_SETUP](constants.md#const_SBERRORINVALIDSETUP)) |
| 1048579 | Invalid state ([SB_ERROR_INVALID_STATE](constants.md#const_SBERRORINVALIDSTATE)) |
| 1048580 | Invalid value ([SB_ERROR_INVALID_VALUE](constants.md#const_SBERRORINVALIDVALUE)) |
| 1048581 | Private key not found ([SB_ERROR_NO_PRIVATE_KEY](constants.md#const_SBERRORNOPRIVATEKEY)) |
| 1048582 | Cancelled by the user ([SB_ERROR_CANCELLED_BY_USER](constants.md#const_SBERRORCANCELLEDBYUSER)) |
| 1048583 | The file was not found ([SB_ERROR_NO_SUCH_FILE](constants.md#const_SBERRORNOSUCHFILE)) |
| 1048584 | Unsupported feature or operation ([SB_ERROR_UNSUPPORTED_FEATURE](constants.md#const_SBERRORUNSUPPORTEDFEATURE)) |
| 1048585 | General error ([SB_ERROR_GENERAL_ERROR](constants.md#const_SBERRORGENERALERROR)) |
| 19922945 | Unsupported keep-alive policy ([SB_ERROR_HTTP_UNSUPPORTED_KEEPALIVEPOLICY](constants.md#const_SBERRORHTTPUNSUPPORTEDKEEPALIVEPOLICY)) |
| 19922946 | Wrong request filter string format ([SB_ERROR_HTTP_WRONG_REQUEST_FILTER_FORMAT](constants.md#const_SBERRORHTTPWRONGREQUESTFILTERFORMAT)) |
| 19922947 | Failed to subscribe to server-sent events service ([SB_ERROR_HTTP_FAILED_TO_SUBSCRIBE](constants.md#const_SBERRORHTTPFAILEDTOSUBSCRIBE)) |
