SecureSocketType

class mtf.network_port.tls.tls_dtls_config.SecureSocketType

Enum representing types of secure socket protocols.

Attributes:

DTLSstr

Datagram Transport Layer Security (DTLS) protocol type, a variant of TLS used for datagram-based applications.

TLSstr

Transport Layer Security (TLS) protocol type, widely used for securing communication over a computer network.

DTLS = 'DTLS'
TLS = 'TLS'