onvif
    Preparing search index...

    Interface TLSServerCapabilities

    The capabilities of a TLS server implementation on a device.

    interface TLSServerCapabilities {
        cnMapsToUserSupported?: boolean;
        enabledVersionsSupported?: boolean;
        maximumNumberOfTLSCertificationPaths?: number;
        maximumNumberOfTLSCertificationPathValidationPolicies?: number;
        TLSClientAuthSupported?: boolean;
        TLSServerSupported?: TLSVersions;
        [key: string]: unknown;
    }

    Indexable

    • [key: string]: unknown
    Index
    cnMapsToUserSupported?: boolean

    Indicates whether the device supports TLS client authorization using common name to local user mapping.

    enabledVersionsSupported?: boolean

    Indicates whether the device supports enabling and disabling specific TLS versions.

    maximumNumberOfTLSCertificationPaths?: number

    Indicates the maximum number of certification paths that may be assigned to the TLS server simultaneously.

    maximumNumberOfTLSCertificationPathValidationPolicies?: number

    Indicates the maximum number of certification path validation policies that may be assigned to the TLS server simultaneously.

    TLSClientAuthSupported?: boolean

    Indicates whether the device supports TLS client authentication.

    TLSServerSupported?: TLSVersions

    Indicates which TLS versions are supported by the device.