This documentation is for version v1.3.2 of NNG, but the latest released version is v1.7.3. see the documentation for v1.7.3 for the most up-to-date information.

nng_tls_config_version(3tls)

NAME

nng_tls_config_version - configure TLS version

SYNOPSIS

#include <nng/nng.h>
#include <nng/supplemental/tls/tls.h>

typedef enum nng_tls_version {
    NNG_TLS_1_0 = 0x301,
    NNG_TLS_1_1 = 0x302,
    NNG_TLS_1_2 = 0x303,
    NNG_TLS_1_3 = 0x304
} nng_tls_version;

int nng_tls_config_version(nng_tls_config *cfg, nng_tls_version min, nng_tls_version max);

DESCRIPTION

The nng_tls_config_version() function configures the TLS version numbers that may be used when establishing TLS sessions using this configuration object.

The actual set supported range will further be restricted by the versions that the TLS engine supports. If the TLS engine cannot support any TLS version in the requested range, then NNG_ENOTSUP is returned.

By default (if this function is not called), NNG will attempt to use both TLS v1.2 and TLS v1.3, provided that the TLS engine supports them.

Clients and servers will generally negotiate for the highest mutually supported TLS version.

As of this writing, we recommend setting the minimum to NNG_TLS_1_2 (TLS v1.2) and the maximum to NNG_TLS_1_3 (TLS v1.3). This gives the best security, while ensuring good interoperability. Nearly all modern TLS implementations support TLS v1.2.
Support for TLS v1.3 is available via external TLS engines.
The cipher-suites supported by TLS v1.3 are different from earlier versions. Therefore it may be necessary to generate different certificates.

CAVEATS

  • SSL v2.0 and v3.0 are insecure, and not supported in NNG.

  • TLS v1.3 is not supported by the default Mbed TLS engine at this time.

  • Some TLS engines may not support limiting the maximum version.

  • TLS v1.3 Zero Round Trip Time (0-RTT) is not supported in NNG.

  • Session resumption is not supported in NNG (for any TLS version).

  • TLS PSK support is not supported in NNG. (This is a limitation planned to be addressed.)

RETURN VALUES

This function returns 0 on success, and non-zero otherwise.

ERRORS

NNG_EINVAL

An invalid version was specified.

NNG_EBUSY

The configuration cfg is already in use, and cannot be modified.

NNG_ENOTSUP

The TLS implementation cannot support any version in the requested range.

SEE ALSO