Ssl Server Test Run Report

DateMar 19, 2024 17:45
Duration1h 24m
Framework TestFlows 2.0.231215.1221232

Artifacts

Test artifacts can be found at https://altinity-build-artifacts.s3.amazonaws.com/index.html#0/false/regression/

Attributes

projectAltinity/ClickHouse
project.id159717931
packagehttps://s3.amazonaws.com/altinity-build-artifacts/23.3/0a8ac3b092733da37e3e2a0079c486938a36790d/package_release/clickhouse-common-static_23.3.19.34.altinityfips_amd64.deb
version23.3.19.34.altinityfips
user.nameEnmk
repositoryhttps://github.com/Altinity/clickhouse-regression
commit.hash6da94b78dc53cb8965ab56c04a89ebf54ed04cbc
job.id8247806903
job.urlhttps://github.com/Altinity/ClickHouse/actions/runs/8247806903
archx86_64
stressFalse
allow_vfsFalse
localTrue
clickhouse_versionNone
clickhouse_binary_pathhttps://s3.amazonaws.com/altinity-build-artifacts/23.3/0a8ac3b092733da37e3e2a0079c486938a36790d/package_release/clickhouse-common-static_23.3.19.34.altinityfips_amd64.deb
collect_service_logsTrue
force_fipsFalse

Summary

85.6%OK
14.4%Known

Statistics

Units OK Fail XFail
Modules
1
1
Suites
9
8
1
Features
55
55
Scenarios
73
70
3
Checks
1952
1660
292
Steps
43695
43581
114

Known Fails

Test NameResultMessage
/ssl server/ssl context/enable ssl no server key passphrase dynamicallyXFail 17s 718ms
https://github.com/ClickHouse/ClickHouse/issues/35950
ConfigReloader: Error updating configuration
/ssl server/ssl context/enable ssl with server key passphrase dynamicallyXFail 17s 759ms
https://github.com/ClickHouse/ClickHouse/issues/35950
ConfigReloader: Error updating configuration
/ssl server/verification modes/fail casesXFail 803us
None
not implemented.
/ssl server/url table function/https server url function checks/just disabling TLSv1.1 suite connection should workXFail 12s 147ms
needs to be reviewed
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/regression.py", line 223, in 
    regression()
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/regression.py", line 214, in regression
    Feature(run=load("ssl_server.tests.url_table_function", "feature"))
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../ssl_server/tests/url_table_function.py", line 141, in feature
    Suite(run=https_server_url_function_checks)
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../ssl_server/tests/url_table_function.py", line 94, in https_server_url_function_checks
    https_server_url_function_connection(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../ssl_server/tests/common.py", line 1064, in https_server_url_function_connection
    node.query(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../helpers/cluster.py", line 836, in query
    assert message in r.output, error(r.output)
AssertionError: Oops! Assertion failed

The following assertion was not satisfied
  assert message in r.output, error(r.output)

Description
  Received exception from server (version 23.3.19):
Code: 636. DB::Exception: Received from localhost:9000. DB::Exception: Cannot extract table structure from CSV format file:
Poco::Exception. Code: 1000, e.code() = 0, SSL Exception: error:1000042e:SSL routines:OPENSSL_internal:TLSV1_ALERT_PROTOCOL_VERSION (version 23.3.19.34.altinityfips (altinity build))
You can specify the structure manually. (CANNOT_EXTRACT_TABLE_STRUCTURE)
(query: SELECT * FROM url('https://127.0.0.1:5001/data', 'CSV') FORMAT CSV
)

Assertion values
  assert message in r.output, error(r.output)
         ^ is '12345'
  assert message in r.output, error(r.output)
                    ^ is 
  assert message in r.output, error(r.output)
                    ^ is = "Received exception from server (version 23.3.19):\nCode: 636. DB::Exception: Received from localhost:9000. DB::Exception: Cannot extract table structure from CSV format file:\nPoco::Exception. Code: 1000, e.code() = 0, SSL Exception: error:1000042e:SSL routines:OPENSSL_internal:TLSV1_ALERT_PROTOCOL_VERSION (version 23.3.19.34.altinityfips (altinity build))\nYou can specify the structure manually. (CANNOT_EXTRACT_TABLE_STRUCTURE)\n(query: SELECT * FROM url('https://127.0.0.1:5001/data', 'CSV') FORMAT CSV\n)"
  assert message in r.output, error(r.output)
                 ^ is = False
  assert message in r.output, error(r.output)
  ^ is False

Where
  File '/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../helpers/cluster.py', line 836 in 'query'

828\|                  assert r.exitcode == exitcode, error(r.output)
829\|  
830\|          if message is not None:
831\|              with (
832\|                  Then(f"output should contain message", description=message)
833\|                  if steps
834\|                  else NullStep()
835\|              ):
836\|>                 assert message in r.output, error(r.output)
837\|  
838\|          if not ignore_exception:
839\|              if message is None or "Exception:" not in message:
/ssl server/url table function/https server url function checks/connection using FIPS compatible cipher ECDHE-ECDSA-AES128-GCM-SHA256 should workXFail 11s 134ms
not supported by SSL library
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/regression.py", line 223, in 
    regression()
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/regression.py", line 214, in regression
    Feature(run=load("ssl_server.tests.url_table_function", "feature"))
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../ssl_server/tests/url_table_function.py", line 141, in feature
    Suite(run=https_server_url_function_checks)
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../ssl_server/tests/url_table_function.py", line 107, in https_server_url_function_checks
    https_server_url_function_connection(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../ssl_server/tests/common.py", line 1064, in https_server_url_function_connection
    node.query(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../helpers/cluster.py", line 836, in query
    assert message in r.output, error(r.output)
AssertionError: Oops! Assertion failed

The following assertion was not satisfied
  assert message in r.output, error(r.output)

Description
  Received exception from server (version 23.3.19):
Code: 636. DB::Exception: Received from localhost:9000. DB::Exception: Cannot extract table structure from CSV format file:
Poco::Exception. Code: 1000, e.code() = 0, SSL Exception: error:10000410:SSL routines:OPENSSL_internal:SSLV3_ALERT_HANDSHAKE_FAILURE (version 23.3.19.34.altinityfips (altinity build))
You can specify the structure manually. (CANNOT_EXTRACT_TABLE_STRUCTURE)
(query: SELECT * FROM url('https://127.0.0.1:5001/data', 'CSV') FORMAT CSV
)

Assertion values
  assert message in r.output, error(r.output)
         ^ is '12345'
  assert message in r.output, error(r.output)
                    ^ is 
  assert message in r.output, error(r.output)
                    ^ is = "Received exception from server (version 23.3.19):\nCode: 636. DB::Exception: Received from localhost:9000. DB::Exception: Cannot extract table structure from CSV format file:\nPoco::Exception. Code: 1000, e.code() = 0, SSL Exception: error:10000410:SSL routines:OPENSSL_internal:SSLV3_ALERT_HANDSHAKE_FAILURE (version 23.3.19.34.altinityfips (altinity build))\nYou can specify the structure manually. (CANNOT_EXTRACT_TABLE_STRUCTURE)\n(query: SELECT * FROM url('https://127.0.0.1:5001/data', 'CSV') FORMAT CSV\n)"
  assert message in r.output, error(r.output)
                 ^ is = False
  assert message in r.output, error(r.output)
  ^ is False

Where
  File '/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../helpers/cluster.py', line 836 in 'query'

828\|                  assert r.exitcode == exitcode, error(r.output)
829\|  
830\|          if message is not None:
831\|              with (
832\|                  Then(f"output should contain message", description=message)
833\|                  if steps
834\|                  else NullStep()
835\|              ):
836\|>                 assert message in r.output, error(r.output)
837\|  
838\|          if not ignore_exception:
839\|              if message is None or "Exception:" not in message:
/ssl server/url table function/https server url function checks/connection using FIPS compatible cipher ECDHE-ECDSA-AES256-GCM-SHA384 should workXFail 11s 165ms
not supported by SSL library
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/regression.py", line 223, in 
    regression()
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/regression.py", line 214, in regression
    Feature(run=load("ssl_server.tests.url_table_function", "feature"))
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../ssl_server/tests/url_table_function.py", line 141, in feature
    Suite(run=https_server_url_function_checks)
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../ssl_server/tests/url_table_function.py", line 107, in https_server_url_function_checks
    https_server_url_function_connection(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../ssl_server/tests/common.py", line 1064, in https_server_url_function_connection
    node.query(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../helpers/cluster.py", line 836, in query
    assert message in r.output, error(r.output)
AssertionError: Oops! Assertion failed

The following assertion was not satisfied
  assert message in r.output, error(r.output)

Description
  Received exception from server (version 23.3.19):
Code: 636. DB::Exception: Received from localhost:9000. DB::Exception: Cannot extract table structure from CSV format file:
Poco::Exception. Code: 1000, e.code() = 0, SSL Exception: error:10000410:SSL routines:OPENSSL_internal:SSLV3_ALERT_HANDSHAKE_FAILURE (version 23.3.19.34.altinityfips (altinity build))
You can specify the structure manually. (CANNOT_EXTRACT_TABLE_STRUCTURE)
(query: SELECT * FROM url('https://127.0.0.1:5001/data', 'CSV') FORMAT CSV
)

Assertion values
  assert message in r.output, error(r.output)
         ^ is '12345'
  assert message in r.output, error(r.output)
                    ^ is 
  assert message in r.output, error(r.output)
                    ^ is = "Received exception from server (version 23.3.19):\nCode: 636. DB::Exception: Received from localhost:9000. DB::Exception: Cannot extract table structure from CSV format file:\nPoco::Exception. Code: 1000, e.code() = 0, SSL Exception: error:10000410:SSL routines:OPENSSL_internal:SSLV3_ALERT_HANDSHAKE_FAILURE (version 23.3.19.34.altinityfips (altinity build))\nYou can specify the structure manually. (CANNOT_EXTRACT_TABLE_STRUCTURE)\n(query: SELECT * FROM url('https://127.0.0.1:5001/data', 'CSV') FORMAT CSV\n)"
  assert message in r.output, error(r.output)
                 ^ is = False
  assert message in r.output, error(r.output)
  ^ is False

Where
  File '/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../helpers/cluster.py', line 836 in 'query'

828\|                  assert r.exitcode == exitcode, error(r.output)
829\|  
830\|          if message is not None:
831\|              with (
832\|                  Then(f"output should contain message", description=message)
833\|                  if steps
834\|                  else NullStep()
835\|              ):
836\|>                 assert message in r.output, error(r.output)
837\|  
838\|          if not ignore_exception:
839\|              if message is None or "Exception:" not in message:
/ssl server/dictionary/https server dictionary checks/just disabling TLSv1.1 suite connection should workXFail 11s 396ms
needs to be reviewed
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/regression.py", line 223, in 
    regression()
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/regression.py", line 215, in regression
    Feature(run=load("ssl_server.tests.dictionary", "feature"))
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../ssl_server/tests/dictionary.py", line 151, in feature
    Suite(run=https_server_dictionary_checks)
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../ssl_server/tests/dictionary.py", line 104, in https_server_dictionary_checks
    https_server_https_dictionary_connection(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../ssl_server/tests/common.py", line 1100, in https_server_https_dictionary_connection
    node.query(f"SELECT * FROM {name} FORMAT CSV", message=message)
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../helpers/cluster.py", line 836, in query
    assert message in r.output, error(r.output)
AssertionError: Oops! Assertion failed

The following assertion was not satisfied
  assert message in r.output, error(r.output)

Description
  Received exception from server (version 23.3.19):
Code: 1000. DB::Exception: Received from localhost:9000. DB::Exception: SSL Exception: error:1000042e:SSL routines:OPENSSL_internal:TLSV1_ALERT_PROTOCOL_VERSION. (POCO_EXCEPTION)
(query: SELECT * FROM dictionary_6651e209_e61b_11ee_889f_b72cd6f4ae20 FORMAT CSV
)

Assertion values
  assert message in r.output, error(r.output)
         ^ is '12345'
  assert message in r.output, error(r.output)
                    ^ is 
  assert message in r.output, error(r.output)
                    ^ is = 'Received exception from server (version 23.3.19):\nCode: 1000. DB::Exception: Received from localhost:9000. DB::Exception: SSL Exception: error:1000042e:SSL routines:OPENSSL_internal:TLSV1_ALERT_PROTOCOL_VERSION. (POCO_EXCEPTION)\n(query: SELECT * FROM dictionary_6651e209_e61b_11ee_889f_b72cd6f4ae20 FORMAT CSV\n)'
  assert message in r.output, error(r.output)
                 ^ is = False
  assert message in r.output, error(r.output)
  ^ is False

Where
  File '/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../helpers/cluster.py', line 836 in 'query'

828\|                  assert r.exitcode == exitcode, error(r.output)
829\|  
830\|          if message is not None:
831\|              with (
832\|                  Then(f"output should contain message", description=message)
833\|                  if steps
834\|                  else NullStep()
835\|              ):
836\|>                 assert message in r.output, error(r.output)
837\|  
838\|          if not ignore_exception:
839\|              if message is None or "Exception:" not in message:
/ssl server/dictionary/https server dictionary checks/connection using FIPS compatible cipher ECDHE-ECDSA-AES128-GCM-SHA256 should workXFail 11s 300ms
not supported by SSL library
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/regression.py", line 223, in 
    regression()
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/regression.py", line 215, in regression
    Feature(run=load("ssl_server.tests.dictionary", "feature"))
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../ssl_server/tests/dictionary.py", line 151, in feature
    Suite(run=https_server_dictionary_checks)
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../ssl_server/tests/dictionary.py", line 117, in https_server_dictionary_checks
    https_server_https_dictionary_connection(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../ssl_server/tests/common.py", line 1100, in https_server_https_dictionary_connection
    node.query(f"SELECT * FROM {name} FORMAT CSV", message=message)
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../helpers/cluster.py", line 836, in query
    assert message in r.output, error(r.output)
AssertionError: Oops! Assertion failed

The following assertion was not satisfied
  assert message in r.output, error(r.output)

Description
  Received exception from server (version 23.3.19):
Code: 1000. DB::Exception: Received from localhost:9000. DB::Exception: SSL Exception: error:10000410:SSL routines:OPENSSL_internal:SSLV3_ALERT_HANDSHAKE_FAILURE. (POCO_EXCEPTION)
(query: SELECT * FROM dictionary_80a921ba_e61b_11ee_889f_b72cd6f4ae20 FORMAT CSV
)

Assertion values
  assert message in r.output, error(r.output)
         ^ is '12345'
  assert message in r.output, error(r.output)
                    ^ is 
  assert message in r.output, error(r.output)
                    ^ is = 'Received exception from server (version 23.3.19):\nCode: 1000. DB::Exception: Received from localhost:9000. DB::Exception: SSL Exception: error:10000410:SSL routines:OPENSSL_internal:SSLV3_ALERT_HANDSHAKE_FAILURE. (POCO_EXCEPTION)\n(query: SELECT * FROM dictionary_80a921ba_e61b_11ee_889f_b72cd6f4ae20 FORMAT CSV\n)'
  assert message in r.output, error(r.output)
                 ^ is = False
  assert message in r.output, error(r.output)
  ^ is False

Where
  File '/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../helpers/cluster.py', line 836 in 'query'

828\|                  assert r.exitcode == exitcode, error(r.output)
829\|  
830\|          if message is not None:
831\|              with (
832\|                  Then(f"output should contain message", description=message)
833\|                  if steps
834\|                  else NullStep()
835\|              ):
836\|>                 assert message in r.output, error(r.output)
837\|  
838\|          if not ignore_exception:
839\|              if message is None or "Exception:" not in message:
/ssl server/dictionary/https server dictionary checks/connection using FIPS compatible cipher ECDHE-ECDSA-AES256-GCM-SHA384 should workXFail 12s 317ms
not supported by SSL library
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/regression.py", line 223, in 
    regression()
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/regression.py", line 215, in regression
    Feature(run=load("ssl_server.tests.dictionary", "feature"))
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../ssl_server/tests/dictionary.py", line 151, in feature
    Suite(run=https_server_dictionary_checks)
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../ssl_server/tests/dictionary.py", line 117, in https_server_dictionary_checks
    https_server_https_dictionary_connection(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../ssl_server/tests/common.py", line 1100, in https_server_https_dictionary_connection
    node.query(f"SELECT * FROM {name} FORMAT CSV", message=message)
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../helpers/cluster.py", line 836, in query
    assert message in r.output, error(r.output)
AssertionError: Oops! Assertion failed

The following assertion was not satisfied
  assert message in r.output, error(r.output)

Description
  Received exception from server (version 23.3.19):
Code: 1000. DB::Exception: Received from localhost:9000. DB::Exception: SSL Exception: error:10000410:SSL routines:OPENSSL_internal:SSLV3_ALERT_HANDSHAKE_FAILURE. (POCO_EXCEPTION)
(query: SELECT * FROM dictionary_8766f3a6_e61b_11ee_889f_b72cd6f4ae20 FORMAT CSV
)

Assertion values
  assert message in r.output, error(r.output)
         ^ is '12345'
  assert message in r.output, error(r.output)
                    ^ is 
  assert message in r.output, error(r.output)
                    ^ is = 'Received exception from server (version 23.3.19):\nCode: 1000. DB::Exception: Received from localhost:9000. DB::Exception: SSL Exception: error:10000410:SSL routines:OPENSSL_internal:SSLV3_ALERT_HANDSHAKE_FAILURE. (POCO_EXCEPTION)\n(query: SELECT * FROM dictionary_8766f3a6_e61b_11ee_889f_b72cd6f4ae20 FORMAT CSV\n)'
  assert message in r.output, error(r.output)
                 ^ is = False
  assert message in r.output, error(r.output)
  ^ is False

Where
  File '/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../helpers/cluster.py', line 836 in 'query'

828\|                  assert r.exitcode == exitcode, error(r.output)
829\|  
830\|          if message is not None:
831\|              with (
832\|                  Then(f"output should contain message", description=message)
833\|                  if steps
834\|                  else NullStep()
835\|              ):
836\|>                 assert message in r.output, error(r.output)
837\|  
838\|          if not ignore_exception:
839\|              if message is None or "Exception:" not in message:
/ssl server/fips/break hashXFail 666us
None
Binary does not have the section necessary for break-hash
/ssl server/fips/clickhouse server acting as a client/url table function/connection using FIPS compatible cipher ECDHE-ECDSA-AES128-GCM-SHA256 should workXFail 679us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, TLS_AES_256_GCM_SHA384XFail 631us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, TLS_CHACHA20_POLY1305_SHA256XFail 393us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, TLS_AES_128_GCM_SHA256XFail 366us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, ECDHE-ECDSA-AES256-GCM-SHA384XFail 474us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, ECDHE-RSA-AES256-GCM-SHA384XFail 580us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, DHE-RSA-AES256-GCM-SHA384XFail 462us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, ECDHE-ECDSA-CHACHA20-POLY1305XFail 370us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, ECDHE-RSA-CHACHA20-POLY1305XFail 393us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, DHE-RSA-CHACHA20-POLY1305XFail 377us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, ECDHE-ECDSA-AES128-GCM-SHA256XFail 514us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, ECDHE-RSA-AES128-GCM-SHA256XFail 400us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, DHE-RSA-AES128-GCM-SHA256XFail 371us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, ECDHE-ECDSA-AES256-SHA384XFail 366us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, ECDHE-RSA-AES256-SHA384XFail 435us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, DHE-RSA-AES256-SHA256XFail 527us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, ECDHE-ECDSA-AES128-SHA256XFail 359us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, ECDHE-RSA-AES128-SHA256XFail 365us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, DHE-RSA-AES128-SHA256XFail 359us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, ECDHE-ECDSA-AES256-SHAXFail 565us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, ECDHE-RSA-AES256-SHAXFail 375us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, DHE-RSA-AES256-SHAXFail 447us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, ECDHE-ECDSA-AES128-SHAXFail 380us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, ECDHE-RSA-AES128-SHAXFail 381us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, DHE-RSA-AES128-SHAXFail 606us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, RSA-PSK-AES256-GCM-SHA384XFail 431us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, DHE-PSK-AES256-GCM-SHA384XFail 434us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, RSA-PSK-CHACHA20-POLY1305XFail 451us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, DHE-PSK-CHACHA20-POLY1305XFail 365us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, ECDHE-PSK-CHACHA20-POLY1305XFail 510us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, AES256-GCM-SHA384XFail 381us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, PSK-AES256-GCM-SHA384XFail 359us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, PSK-CHACHA20-POLY1305XFail 363us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, RSA-PSK-AES128-GCM-SHA256XFail 536us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, DHE-PSK-AES128-GCM-SHA256XFail 366us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, AES128-GCM-SHA256XFail 354us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, PSK-AES128-GCM-SHA256XFail 360us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, AES256-SHA256XFail 430us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, AES128-SHA256XFail 506us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, ECDHE-PSK-AES256-CBC-SHA384XFail 358us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, ECDHE-PSK-AES256-CBC-SHAXFail 438us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, SRP-RSA-AES-256-CBC-SHAXFail 358us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, SRP-AES-256-CBC-SHAXFail 366us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, RSA-PSK-AES256-CBC-SHA384XFail 539us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, DHE-PSK-AES256-CBC-SHA384XFail 386us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, RSA-PSK-AES256-CBC-SHAXFail 360us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, DHE-PSK-AES256-CBC-SHAXFail 355us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, AES256-SHAXFail 546us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, PSK-AES256-CBC-SHA384XFail 363us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, PSK-AES256-CBC-SHAXFail 362us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, ECDHE-PSK-AES128-CBC-SHA256XFail 372us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, ECDHE-PSK-AES128-CBC-SHAXFail 379us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, SRP-RSA-AES-128-CBC-SHAXFail 1ms
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, SRP-AES-128-CBC-SHAXFail 404us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, RSA-PSK-AES128-CBC-SHA256XFail 369us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, DHE-PSK-AES128-CBC-SHA256XFail 398us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, RSA-PSK-AES128-CBC-SHAXFail 366us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, DHE-PSK-AES128-CBC-SHAXFail 22ms
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, AES128-SHAXFail 374us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, PSK-AES128-CBC-SHA256XFail 420us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, PSK-AES128-CBC-SHAXFail 460us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection using FIPS compatible cipher ECDHE-ECDSA-AES256-GCM-SHA384 should workXFail 422us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, TLS_AES_256_GCM_SHA384XFail 381us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, TLS_CHACHA20_POLY1305_SHA256XFail 380us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, TLS_AES_128_GCM_SHA256XFail 473us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, ECDHE-ECDSA-AES256-GCM-SHA384XFail 367us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, ECDHE-RSA-AES256-GCM-SHA384XFail 360us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, DHE-RSA-AES256-GCM-SHA384XFail 458us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, ECDHE-ECDSA-CHACHA20-POLY1305XFail 464us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, ECDHE-RSA-CHACHA20-POLY1305XFail 354us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, DHE-RSA-CHACHA20-POLY1305XFail 367us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, ECDHE-ECDSA-AES128-GCM-SHA256XFail 377us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, ECDHE-RSA-AES128-GCM-SHA256XFail 360us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, DHE-RSA-AES128-GCM-SHA256XFail 473us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, ECDHE-ECDSA-AES256-SHA384XFail 465us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, ECDHE-RSA-AES256-SHA384XFail 370us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, DHE-RSA-AES256-SHA256XFail 372us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, ECDHE-ECDSA-AES128-SHA256XFail 468us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, ECDHE-RSA-AES128-SHA256XFail 734us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, DHE-RSA-AES128-SHA256XFail 371us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, ECDHE-ECDSA-AES256-SHAXFail 359us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, ECDHE-RSA-AES256-SHAXFail 366us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, DHE-RSA-AES256-SHAXFail 519us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, ECDHE-ECDSA-AES128-SHAXFail 380us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, ECDHE-RSA-AES128-SHAXFail 369us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, DHE-RSA-AES128-SHAXFail 371us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, RSA-PSK-AES256-GCM-SHA384XFail 479us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, DHE-PSK-AES256-GCM-SHA384XFail 451us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, RSA-PSK-CHACHA20-POLY1305XFail 389us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, DHE-PSK-CHACHA20-POLY1305XFail 344us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, ECDHE-PSK-CHACHA20-POLY1305XFail 344us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, AES256-GCM-SHA384XFail 502us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, PSK-AES256-GCM-SHA384XFail 358us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, PSK-CHACHA20-POLY1305XFail 425us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, RSA-PSK-AES128-GCM-SHA256XFail 356us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, DHE-PSK-AES128-GCM-SHA256XFail 488us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, AES128-GCM-SHA256XFail 372us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, PSK-AES128-GCM-SHA256XFail 342us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, AES256-SHA256XFail 343us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, AES128-SHA256XFail 384us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, ECDHE-PSK-AES256-CBC-SHA384XFail 479us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, ECDHE-PSK-AES256-CBC-SHAXFail 352us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, SRP-RSA-AES-256-CBC-SHAXFail 364us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, SRP-AES-256-CBC-SHAXFail 381us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, RSA-PSK-AES256-CBC-SHA384XFail 472us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, DHE-PSK-AES256-CBC-SHA384XFail 337us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, RSA-PSK-AES256-CBC-SHAXFail 345us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, DHE-PSK-AES256-CBC-SHAXFail 340us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, AES256-SHAXFail 335us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, PSK-AES256-CBC-SHA384XFail 1ms
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, PSK-AES256-CBC-SHAXFail 351us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, ECDHE-PSK-AES128-CBC-SHA256XFail 337us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, ECDHE-PSK-AES128-CBC-SHAXFail 362us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, SRP-RSA-AES-128-CBC-SHAXFail 460us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, SRP-AES-128-CBC-SHAXFail 350us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, RSA-PSK-AES128-CBC-SHA256XFail 353us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, DHE-PSK-AES128-CBC-SHA256XFail 354us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, RSA-PSK-AES128-CBC-SHAXFail 328us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, DHE-PSK-AES128-CBC-SHAXFail 456us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, AES128-SHAXFail 363us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, PSK-AES128-CBC-SHA256XFail 326us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, PSK-AES128-CBC-SHAXFail 326us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection using non-FIPS compatible cipher TLS_AES_256_GCM_SHA384 should be rejectedXFail 1ms
not supported by TLSv1.2
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection using non-FIPS compatible cipher TLS_CHACHA20_POLY1305_SHA256 should be rejectedXFail 646us
not supported by TLSv1.2
None
/ssl server/fips/clickhouse server acting as a client/url table function/connection using non-FIPS compatible cipher TLS_AES_128_GCM_SHA256 should be rejectedXFail 676us
not supported by TLSv1.2
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using FIPS compatible cipher ECDHE-ECDSA-AES128-GCM-SHA256 should workXFail 876us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, TLS_AES_256_GCM_SHA384XFail 579us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, TLS_CHACHA20_POLY1305_SHA256XFail 473us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, TLS_AES_128_GCM_SHA256XFail 676us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, ECDHE-ECDSA-AES256-GCM-SHA384XFail 433us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, ECDHE-RSA-AES256-GCM-SHA384XFail 512us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, DHE-RSA-AES256-GCM-SHA384XFail 536us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, ECDHE-ECDSA-CHACHA20-POLY1305XFail 642us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, ECDHE-RSA-CHACHA20-POLY1305XFail 475us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, DHE-RSA-CHACHA20-POLY1305XFail 492us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, ECDHE-ECDSA-AES128-GCM-SHA256XFail 425us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, ECDHE-RSA-AES128-GCM-SHA256XFail 439us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, DHE-RSA-AES128-GCM-SHA256XFail 611us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, ECDHE-ECDSA-AES256-SHA384XFail 495us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, ECDHE-RSA-AES256-SHA384XFail 448us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, DHE-RSA-AES256-SHA256XFail 451us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, ECDHE-ECDSA-AES128-SHA256XFail 478us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, ECDHE-RSA-AES128-SHA256XFail 830us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, DHE-RSA-AES128-SHA256XFail 460us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, ECDHE-ECDSA-AES256-SHAXFail 555us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, ECDHE-RSA-AES256-SHAXFail 610us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, DHE-RSA-AES256-SHAXFail 724us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, ECDHE-ECDSA-AES128-SHAXFail 562us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, ECDHE-RSA-AES128-SHAXFail 530us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, DHE-RSA-AES128-SHAXFail 597us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, RSA-PSK-AES256-GCM-SHA384XFail 596us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, DHE-PSK-AES256-GCM-SHA384XFail 784us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, RSA-PSK-CHACHA20-POLY1305XFail 541us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, DHE-PSK-CHACHA20-POLY1305XFail 576us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, ECDHE-PSK-CHACHA20-POLY1305XFail 567us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, AES256-GCM-SHA384XFail 2ms
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, PSK-AES256-GCM-SHA384XFail 596us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, PSK-CHACHA20-POLY1305XFail 561us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, RSA-PSK-AES128-GCM-SHA256XFail 545us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, DHE-PSK-AES128-GCM-SHA256XFail 587us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, AES128-GCM-SHA256XFail 28ms
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, PSK-AES128-GCM-SHA256XFail 634us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, AES256-SHA256XFail 565us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, AES128-SHA256XFail 737us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, ECDHE-PSK-AES256-CBC-SHA384XFail 549us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, ECDHE-PSK-AES256-CBC-SHAXFail 573us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, SRP-RSA-AES-256-CBC-SHAXFail 550us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, SRP-AES-256-CBC-SHAXFail 687us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, RSA-PSK-AES256-CBC-SHA384XFail 559us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, DHE-PSK-AES256-CBC-SHA384XFail 545us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, RSA-PSK-AES256-CBC-SHAXFail 602us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, DHE-PSK-AES256-CBC-SHAXFail 553us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, AES256-SHAXFail 741us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, PSK-AES256-CBC-SHA384XFail 541us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, PSK-AES256-CBC-SHAXFail 503us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, ECDHE-PSK-AES128-CBC-SHA256XFail 540us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, ECDHE-PSK-AES128-CBC-SHAXFail 655us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, SRP-RSA-AES-128-CBC-SHAXFail 468us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, SRP-AES-128-CBC-SHAXFail 477us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, RSA-PSK-AES128-CBC-SHA256XFail 523us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, DHE-PSK-AES128-CBC-SHA256XFail 488us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, RSA-PSK-AES128-CBC-SHAXFail 648us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, DHE-PSK-AES128-CBC-SHAXFail 533us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, AES128-SHAXFail 495us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, PSK-AES128-CBC-SHA256XFail 479us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, PSK-AES128-CBC-SHAXFail 651us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using FIPS compatible cipher ECDHE-ECDSA-AES256-GCM-SHA384 should workXFail 486us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, TLS_AES_256_GCM_SHA384XFail 508us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, TLS_CHACHA20_POLY1305_SHA256XFail 495us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, TLS_AES_128_GCM_SHA256XFail 507us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, ECDHE-ECDSA-AES256-GCM-SHA384XFail 739us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, ECDHE-RSA-AES256-GCM-SHA384XFail 492us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, DHE-RSA-AES256-GCM-SHA384XFail 879us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, ECDHE-ECDSA-CHACHA20-POLY1305XFail 411us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, ECDHE-RSA-CHACHA20-POLY1305XFail 555us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, DHE-RSA-CHACHA20-POLY1305XFail 414us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, ECDHE-ECDSA-AES128-GCM-SHA256XFail 374us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, ECDHE-RSA-AES128-GCM-SHA256XFail 375us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, DHE-RSA-AES128-GCM-SHA256XFail 433us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, ECDHE-ECDSA-AES256-SHA384XFail 551us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, ECDHE-RSA-AES256-SHA384XFail 710us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, DHE-RSA-AES256-SHA256XFail 484us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, ECDHE-ECDSA-AES128-SHA256XFail 386us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, ECDHE-RSA-AES128-SHA256XFail 521us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, DHE-RSA-AES128-SHA256XFail 352us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, ECDHE-ECDSA-AES256-SHAXFail 343us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, ECDHE-RSA-AES256-SHAXFail 362us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, DHE-RSA-AES256-SHAXFail 367us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, ECDHE-ECDSA-AES128-SHAXFail 470us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, ECDHE-RSA-AES128-SHAXFail 504us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, DHE-RSA-AES128-SHAXFail 389us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, RSA-PSK-AES256-GCM-SHA384XFail 407us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, DHE-PSK-AES256-GCM-SHA384XFail 1ms
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, RSA-PSK-CHACHA20-POLY1305XFail 482us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, DHE-PSK-CHACHA20-POLY1305XFail 492us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, ECDHE-PSK-CHACHA20-POLY1305XFail 1ms
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, AES256-GCM-SHA384XFail 408us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, PSK-AES256-GCM-SHA384XFail 518us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, PSK-CHACHA20-POLY1305XFail 356us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, RSA-PSK-AES128-GCM-SHA256XFail 340us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, DHE-PSK-AES128-GCM-SHA256XFail 362us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, AES128-GCM-SHA256XFail 353us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, PSK-AES128-GCM-SHA256XFail 492us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, AES256-SHA256XFail 340us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, AES128-SHA256XFail 1ms
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, ECDHE-PSK-AES256-CBC-SHA384XFail 400us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, ECDHE-PSK-AES256-CBC-SHAXFail 510us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, SRP-RSA-AES-256-CBC-SHAXFail 343us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, SRP-AES-256-CBC-SHAXFail 333us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, RSA-PSK-AES256-CBC-SHA384XFail 362us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, DHE-PSK-AES256-CBC-SHA384XFail 395us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, RSA-PSK-AES256-CBC-SHAXFail 465us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, DHE-PSK-AES256-CBC-SHAXFail 332us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, AES256-SHAXFail 1ms
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, PSK-AES256-CBC-SHA384XFail 410us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, PSK-AES256-CBC-SHAXFail 337us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, ECDHE-PSK-AES128-CBC-SHA256XFail 509us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, ECDHE-PSK-AES128-CBC-SHAXFail 337us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, SRP-RSA-AES-128-CBC-SHAXFail 335us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, SRP-AES-128-CBC-SHAXFail 350us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, RSA-PSK-AES128-CBC-SHA256XFail 485us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, DHE-PSK-AES128-CBC-SHA256XFail 407us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, RSA-PSK-AES128-CBC-SHAXFail 393us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, DHE-PSK-AES128-CBC-SHAXFail 352us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, AES128-SHAXFail 337us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, PSK-AES128-CBC-SHA256XFail 515us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, PSK-AES128-CBC-SHAXFail 345us
not supported by SSL library
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using non-FIPS compatible cipher TLS_AES_256_GCM_SHA384 should be rejectedXFail 912us
not supported by TLSv1.2
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using non-FIPS compatible cipher TLS_CHACHA20_POLY1305_SHA256 should be rejectedXFail 428us
not supported by TLSv1.2
None
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using non-FIPS compatible cipher TLS_AES_128_GCM_SHA256 should be rejectedXFail 584us
not supported by TLSv1.2
None
/ssl server/zookeeper/fips/ECDHE-ECDSA-AES128-GCM-SHA256/fips connectionXFail 52s 437ms
SSLV3_ALERT_HANDSHAKE_FAILURE
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/regression.py", line 223, in 
    regression()
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/regression.py", line 217, in regression
    Feature(run=load("ssl_server.tests.zookeeper.feature", "feature"))
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../ssl_server/tests/zookeeper/feature.py", line 329, in feature
    Feature(run=fips)
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../ssl_server/tests/zookeeper/feature.py", line 279, in fips
    fips_connection(cipher_list=cipher_suite)
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../ssl_server/tests/zookeeper/feature.py", line 269, in fips_connection
    check_clickhouse_connection_to_zookeeper()
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../ssl_server/tests/zookeeper/steps.py", line 448, in check_clickhouse_connection_to_zookeeper
    node.query(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../helpers/cluster.py", line 808, in query
    return self.query(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../helpers/cluster.py", line 808, in query
    return self.query(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../helpers/cluster.py", line 808, in query
    return self.query(
  [Previous line repeated 2 more times]
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../helpers/cluster.py", line 844, in query
    assert False, error(r.output)
AssertionError: Oops! Assertion failed

The following assertion was not satisfied
  assert False, error(r.output)

Description
  Received exception from server (version 23.3.19):
Code: 999. DB::Exception: Received from localhost:9000. Coordination::Exception. Coordination::Exception: Connection loss, path: All connection tries failed while connecting to ZooKeeper. nodes: secure://172.18.0.3:2281
Poco::Exception. Code: 1000, e.code() = 0, SSL Exception: error:10000410:SSL routines:OPENSSL_internal:SSLV3_ALERT_HANDSHAKE_FAILURE (version 23.3.19.34.altinityfips (altinity build)), 172.18.0.3:2281
Poco::Exception. Code: 1000, e.code() = 0, SSL Exception: error:10000410:SSL routines:OPENSSL_internal:SSLV3_ALERT_HANDSHAKE_FAILURE (version 23.3.19.34.altinityfips (altinity build)), 172.18.0.3:2281
Poco::Exception. Code: 1000, e.code() = 0, SSL Exception: error:10000410:SSL routines:OPENSSL_internal:SSLV3_ALERT_HANDSHAKE_FAILURE (version 23.3.19.34.altinityfips (altinity build)), 172.18.0.3:2281
. (KEEPER_EXCEPTION)
(query: SELECT * FROM system.zookeeper WHERE path = '/' FORMAT JSON
)

Assertion values
  assert False, error(r.output)
  ^ is False

Where
  File '/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../helpers/cluster.py', line 844 in 'query'

836\|                  assert message in r.output, error(r.output)
837\|  
838\|          if not ignore_exception:
839\|              if message is None or "Exception:" not in message:
840\|                  with Then("check if output has exception") if steps else NullStep():
841\|                      if "Exception:" in r.output:
842\|                          if raise_on_exception:
843\|                              raise QueryRuntimeException(r.output)
844\|>                         assert False, error(r.output)
845\|  
846\|          return r
847\|
/ssl server/zookeeper/fips/ECDHE-ECDSA-AES256-GCM-SHA384/fips connectionXFail 55s 500ms
SSLV3_ALERT_HANDSHAKE_FAILURE
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/regression.py", line 223, in 
    regression()
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/regression.py", line 217, in regression
    Feature(run=load("ssl_server.tests.zookeeper.feature", "feature"))
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../ssl_server/tests/zookeeper/feature.py", line 329, in feature
    Feature(run=fips)
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../ssl_server/tests/zookeeper/feature.py", line 279, in fips
    fips_connection(cipher_list=cipher_suite)
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../ssl_server/tests/zookeeper/feature.py", line 269, in fips_connection
    check_clickhouse_connection_to_zookeeper()
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../ssl_server/tests/zookeeper/steps.py", line 448, in check_clickhouse_connection_to_zookeeper
    node.query(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../helpers/cluster.py", line 808, in query
    return self.query(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../helpers/cluster.py", line 808, in query
    return self.query(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../helpers/cluster.py", line 808, in query
    return self.query(
  [Previous line repeated 2 more times]
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../helpers/cluster.py", line 844, in query
    assert False, error(r.output)
AssertionError: Oops! Assertion failed

The following assertion was not satisfied
  assert False, error(r.output)

Description
  Received exception from server (version 23.3.19):
Code: 999. DB::Exception: Received from localhost:9000. Coordination::Exception. Coordination::Exception: Connection loss, path: All connection tries failed while connecting to ZooKeeper. nodes: secure://172.18.0.3:2281
Poco::Exception. Code: 1000, e.code() = 0, SSL Exception: error:10000410:SSL routines:OPENSSL_internal:SSLV3_ALERT_HANDSHAKE_FAILURE (version 23.3.19.34.altinityfips (altinity build)), 172.18.0.3:2281
Poco::Exception. Code: 1000, e.code() = 0, SSL Exception: error:10000410:SSL routines:OPENSSL_internal:SSLV3_ALERT_HANDSHAKE_FAILURE (version 23.3.19.34.altinityfips (altinity build)), 172.18.0.3:2281
Poco::Exception. Code: 1000, e.code() = 0, SSL Exception: error:10000410:SSL routines:OPENSSL_internal:SSLV3_ALERT_HANDSHAKE_FAILURE (version 23.3.19.34.altinityfips (altinity build)), 172.18.0.3:2281
. (KEEPER_EXCEPTION)
(query: SELECT * FROM system.zookeeper WHERE path = '/' FORMAT JSON
)

Assertion values
  assert False, error(r.output)
  ^ is False

Where
  File '/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../helpers/cluster.py', line 844 in 'query'

836\|                  assert message in r.output, error(r.output)
837\|  
838\|          if not ignore_exception:
839\|              if message is None or "Exception:" not in message:
840\|                  with Then("check if output has exception") if steps else NullStep():
841\|                      if "Exception:" in r.output:
842\|                          if raise_on_exception:
843\|                              raise QueryRuntimeException(r.output)
844\|>                         assert False, error(r.output)
845\|  
846\|          return r
847\|
/ssl server/zookeeper/fips/AES128-GCM-SHA256/fips connectionXFail 55s 505ms
SSLV3_ALERT_HANDSHAKE_FAILURE
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/regression.py", line 223, in 
    regression()
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/regression.py", line 217, in regression
    Feature(run=load("ssl_server.tests.zookeeper.feature", "feature"))
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../ssl_server/tests/zookeeper/feature.py", line 329, in feature
    Feature(run=fips)
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../ssl_server/tests/zookeeper/feature.py", line 279, in fips
    fips_connection(cipher_list=cipher_suite)
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../ssl_server/tests/zookeeper/feature.py", line 269, in fips_connection
    check_clickhouse_connection_to_zookeeper()
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../ssl_server/tests/zookeeper/steps.py", line 448, in check_clickhouse_connection_to_zookeeper
    node.query(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../helpers/cluster.py", line 808, in query
    return self.query(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../helpers/cluster.py", line 808, in query
    return self.query(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../helpers/cluster.py", line 808, in query
    return self.query(
  [Previous line repeated 2 more times]
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../helpers/cluster.py", line 844, in query
    assert False, error(r.output)
AssertionError: Oops! Assertion failed

The following assertion was not satisfied
  assert False, error(r.output)

Description
  Received exception from server (version 23.3.19):
Code: 999. DB::Exception: Received from localhost:9000. Coordination::Exception. Coordination::Exception: Connection loss, path: All connection tries failed while connecting to ZooKeeper. nodes: secure://172.18.0.3:2281
Poco::Exception. Code: 1000, e.code() = 0, SSL Exception: error:10000410:SSL routines:OPENSSL_internal:SSLV3_ALERT_HANDSHAKE_FAILURE (version 23.3.19.34.altinityfips (altinity build)), 172.18.0.3:2281
Poco::Exception. Code: 1000, e.code() = 0, SSL Exception: error:10000410:SSL routines:OPENSSL_internal:SSLV3_ALERT_HANDSHAKE_FAILURE (version 23.3.19.34.altinityfips (altinity build)), 172.18.0.3:2281
Poco::Exception. Code: 1000, e.code() = 0, SSL Exception: error:10000410:SSL routines:OPENSSL_internal:SSLV3_ALERT_HANDSHAKE_FAILURE (version 23.3.19.34.altinityfips (altinity build)), 172.18.0.3:2281
. (KEEPER_EXCEPTION)
(query: SELECT * FROM system.zookeeper WHERE path = '/' FORMAT JSON
)

Assertion values
  assert False, error(r.output)
  ^ is False

Where
  File '/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../helpers/cluster.py', line 844 in 'query'

836\|                  assert message in r.output, error(r.output)
837\|  
838\|          if not ignore_exception:
839\|              if message is None or "Exception:" not in message:
840\|                  with Then("check if output has exception") if steps else NullStep():
841\|                      if "Exception:" in r.output:
842\|                          if raise_on_exception:
843\|                              raise QueryRuntimeException(r.output)
844\|>                         assert False, error(r.output)
845\|  
846\|          return r
847\|
/ssl server/zookeeper/fips/AES256-GCM-SHA384/fips connectionXFail 55s 518ms
SSLV3_ALERT_HANDSHAKE_FAILURE
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/regression.py", line 223, in 
    regression()
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/regression.py", line 217, in regression
    Feature(run=load("ssl_server.tests.zookeeper.feature", "feature"))
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../ssl_server/tests/zookeeper/feature.py", line 329, in feature
    Feature(run=fips)
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../ssl_server/tests/zookeeper/feature.py", line 279, in fips
    fips_connection(cipher_list=cipher_suite)
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../ssl_server/tests/zookeeper/feature.py", line 269, in fips_connection
    check_clickhouse_connection_to_zookeeper()
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../ssl_server/tests/zookeeper/steps.py", line 448, in check_clickhouse_connection_to_zookeeper
    node.query(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../helpers/cluster.py", line 808, in query
    return self.query(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../helpers/cluster.py", line 808, in query
    return self.query(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../helpers/cluster.py", line 808, in query
    return self.query(
  [Previous line repeated 2 more times]
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../helpers/cluster.py", line 844, in query
    assert False, error(r.output)
AssertionError: Oops! Assertion failed

The following assertion was not satisfied
  assert False, error(r.output)

Description
  Received exception from server (version 23.3.19):
Code: 999. DB::Exception: Received from localhost:9000. Coordination::Exception. Coordination::Exception: Connection loss, path: All connection tries failed while connecting to ZooKeeper. nodes: secure://172.18.0.3:2281
Poco::Exception. Code: 1000, e.code() = 0, SSL Exception: error:10000410:SSL routines:OPENSSL_internal:SSLV3_ALERT_HANDSHAKE_FAILURE (version 23.3.19.34.altinityfips (altinity build)), 172.18.0.3:2281
Poco::Exception. Code: 1000, e.code() = 0, SSL Exception: error:10000410:SSL routines:OPENSSL_internal:SSLV3_ALERT_HANDSHAKE_FAILURE (version 23.3.19.34.altinityfips (altinity build)), 172.18.0.3:2281
Poco::Exception. Code: 1000, e.code() = 0, SSL Exception: error:10000410:SSL routines:OPENSSL_internal:SSLV3_ALERT_HANDSHAKE_FAILURE (version 23.3.19.34.altinityfips (altinity build)), 172.18.0.3:2281
. (KEEPER_EXCEPTION)
(query: SELECT * FROM system.zookeeper WHERE path = '/' FORMAT JSON
)

Assertion values
  assert False, error(r.output)
  ^ is False

Where
  File '/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../helpers/cluster.py', line 844 in 'query'

836\|                  assert message in r.output, error(r.output)
837\|  
838\|          if not ignore_exception:
839\|              if message is None or "Exception:" not in message:
840\|                  with Then("check if output has exception") if steps else NullStep():
841\|                      if "Exception:" in r.output:
842\|                          if raise_on_exception:
843\|                              raise QueryRuntimeException(r.output)
844\|>                         assert False, error(r.output)
845\|  
846\|          return r
847\|
/ssl server/zookeeper fips/fips/ECDHE-ECDSA-AES128-GCM-SHA256/fips connectionXFail 52s 353ms
SSLV3_ALERT_HANDSHAKE_FAILURE
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/regression.py", line 223, in 
    regression()
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/regression.py", line 218, in regression
    Feature(run=load("ssl_server.tests.zookeeper_fips.feature", "feature"))
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../ssl_server/tests/zookeeper_fips/feature.py", line 434, in feature
    Feature(run=fips)
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../ssl_server/tests/zookeeper_fips/feature.py", line 319, in fips
    fips_connection(cipher_list=cipher_suite)
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../ssl_server/tests/zookeeper_fips/feature.py", line 309, in fips_connection
    check_clickhouse_connection_to_zookeeper()
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../ssl_server/tests/zookeeper/steps.py", line 448, in check_clickhouse_connection_to_zookeeper
    node.query(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../helpers/cluster.py", line 808, in query
    return self.query(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../helpers/cluster.py", line 808, in query
    return self.query(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../helpers/cluster.py", line 808, in query
    return self.query(
  [Previous line repeated 2 more times]
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../helpers/cluster.py", line 844, in query
    assert False, error(r.output)
AssertionError: Oops! Assertion failed

The following assertion was not satisfied
  assert False, error(r.output)

Description
  Received exception from server (version 23.3.19):
Code: 999. DB::Exception: Received from localhost:9000. Coordination::Exception. Coordination::Exception: Connection loss, path: All connection tries failed while connecting to ZooKeeper. nodes: secure://172.18.0.2:2281
Poco::Exception. Code: 1000, e.code() = 0, SSL Exception: error:10000410:SSL routines:OPENSSL_internal:SSLV3_ALERT_HANDSHAKE_FAILURE (version 23.3.19.34.altinityfips (altinity build)), 172.18.0.2:2281
Poco::Exception. Code: 1000, e.code() = 0, SSL Exception: error:10000410:SSL routines:OPENSSL_internal:SSLV3_ALERT_HANDSHAKE_FAILURE (version 23.3.19.34.altinityfips (altinity build)), 172.18.0.2:2281
Poco::Exception. Code: 1000, e.code() = 0, SSL Exception: error:10000410:SSL routines:OPENSSL_internal:SSLV3_ALERT_HANDSHAKE_FAILURE (version 23.3.19.34.altinityfips (altinity build)), 172.18.0.2:2281
. (KEEPER_EXCEPTION)
(query: SELECT * FROM system.zookeeper WHERE path = '/' FORMAT JSON
)

Assertion values
  assert False, error(r.output)
  ^ is False

Where
  File '/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../helpers/cluster.py', line 844 in 'query'

836\|                  assert message in r.output, error(r.output)
837\|  
838\|          if not ignore_exception:
839\|              if message is None or "Exception:" not in message:
840\|                  with Then("check if output has exception") if steps else NullStep():
841\|                      if "Exception:" in r.output:
842\|                          if raise_on_exception:
843\|                              raise QueryRuntimeException(r.output)
844\|>                         assert False, error(r.output)
845\|  
846\|          return r
847\|
/ssl server/zookeeper fips/fips/ECDHE-ECDSA-AES256-GCM-SHA384/fips connectionXFail 52s 442ms
SSLV3_ALERT_HANDSHAKE_FAILURE
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/regression.py", line 223, in 
    regression()
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/regression.py", line 218, in regression
    Feature(run=load("ssl_server.tests.zookeeper_fips.feature", "feature"))
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../ssl_server/tests/zookeeper_fips/feature.py", line 434, in feature
    Feature(run=fips)
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../ssl_server/tests/zookeeper_fips/feature.py", line 319, in fips
    fips_connection(cipher_list=cipher_suite)
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../ssl_server/tests/zookeeper_fips/feature.py", line 309, in fips_connection
    check_clickhouse_connection_to_zookeeper()
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../ssl_server/tests/zookeeper/steps.py", line 448, in check_clickhouse_connection_to_zookeeper
    node.query(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../helpers/cluster.py", line 808, in query
    return self.query(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../helpers/cluster.py", line 808, in query
    return self.query(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../helpers/cluster.py", line 808, in query
    return self.query(
  [Previous line repeated 2 more times]
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../helpers/cluster.py", line 844, in query
    assert False, error(r.output)
AssertionError: Oops! Assertion failed

The following assertion was not satisfied
  assert False, error(r.output)

Description
  Received exception from server (version 23.3.19):
Code: 999. DB::Exception: Received from localhost:9000. Coordination::Exception. Coordination::Exception: Connection loss, path: All connection tries failed while connecting to ZooKeeper. nodes: secure://172.18.0.2:2281
Poco::Exception. Code: 1000, e.code() = 0, SSL Exception: error:10000410:SSL routines:OPENSSL_internal:SSLV3_ALERT_HANDSHAKE_FAILURE (version 23.3.19.34.altinityfips (altinity build)), 172.18.0.2:2281
Poco::Exception. Code: 1000, e.code() = 0, SSL Exception: error:10000410:SSL routines:OPENSSL_internal:SSLV3_ALERT_HANDSHAKE_FAILURE (version 23.3.19.34.altinityfips (altinity build)), 172.18.0.2:2281
Poco::Exception. Code: 1000, e.code() = 0, SSL Exception: error:10000410:SSL routines:OPENSSL_internal:SSLV3_ALERT_HANDSHAKE_FAILURE (version 23.3.19.34.altinityfips (altinity build)), 172.18.0.2:2281
. (KEEPER_EXCEPTION)
(query: SELECT * FROM system.zookeeper WHERE path = '/' FORMAT JSON
)

Assertion values
  assert False, error(r.output)
  ^ is False

Where
  File '/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../helpers/cluster.py', line 844 in 'query'

836\|                  assert message in r.output, error(r.output)
837\|  
838\|          if not ignore_exception:
839\|              if message is None or "Exception:" not in message:
840\|                  with Then("check if output has exception") if steps else NullStep():
841\|                      if "Exception:" in r.output:
842\|                          if raise_on_exception:
843\|                              raise QueryRuntimeException(r.output)
844\|>                         assert False, error(r.output)
845\|  
846\|          return r
847\|
/ssl server/zookeeper fips/fips/AES128-GCM-SHA256/fips connectionXFail 52s 470ms
SSLV3_ALERT_HANDSHAKE_FAILURE
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/regression.py", line 223, in 
    regression()
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/regression.py", line 218, in regression
    Feature(run=load("ssl_server.tests.zookeeper_fips.feature", "feature"))
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../ssl_server/tests/zookeeper_fips/feature.py", line 434, in feature
    Feature(run=fips)
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../ssl_server/tests/zookeeper_fips/feature.py", line 319, in fips
    fips_connection(cipher_list=cipher_suite)
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../ssl_server/tests/zookeeper_fips/feature.py", line 309, in fips_connection
    check_clickhouse_connection_to_zookeeper()
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../ssl_server/tests/zookeeper/steps.py", line 448, in check_clickhouse_connection_to_zookeeper
    node.query(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../helpers/cluster.py", line 808, in query
    return self.query(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../helpers/cluster.py", line 808, in query
    return self.query(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../helpers/cluster.py", line 808, in query
    return self.query(
  [Previous line repeated 2 more times]
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../helpers/cluster.py", line 844, in query
    assert False, error(r.output)
AssertionError: Oops! Assertion failed

The following assertion was not satisfied
  assert False, error(r.output)

Description
  Received exception from server (version 23.3.19):
Code: 999. DB::Exception: Received from localhost:9000. Coordination::Exception. Coordination::Exception: Connection loss, path: All connection tries failed while connecting to ZooKeeper. nodes: secure://172.18.0.2:2281
Poco::Exception. Code: 1000, e.code() = 0, SSL Exception: error:10000410:SSL routines:OPENSSL_internal:SSLV3_ALERT_HANDSHAKE_FAILURE (version 23.3.19.34.altinityfips (altinity build)), 172.18.0.2:2281
Poco::Exception. Code: 1000, e.code() = 0, SSL Exception: error:10000410:SSL routines:OPENSSL_internal:SSLV3_ALERT_HANDSHAKE_FAILURE (version 23.3.19.34.altinityfips (altinity build)), 172.18.0.2:2281
Poco::Exception. Code: 1000, e.code() = 0, SSL Exception: error:10000410:SSL routines:OPENSSL_internal:SSLV3_ALERT_HANDSHAKE_FAILURE (version 23.3.19.34.altinityfips (altinity build)), 172.18.0.2:2281
. (KEEPER_EXCEPTION)
(query: SELECT * FROM system.zookeeper WHERE path = '/' FORMAT JSON
)

Assertion values
  assert False, error(r.output)
  ^ is False

Where
  File '/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../helpers/cluster.py', line 844 in 'query'

836\|                  assert message in r.output, error(r.output)
837\|  
838\|          if not ignore_exception:
839\|              if message is None or "Exception:" not in message:
840\|                  with Then("check if output has exception") if steps else NullStep():
841\|                      if "Exception:" in r.output:
842\|                          if raise_on_exception:
843\|                              raise QueryRuntimeException(r.output)
844\|>                         assert False, error(r.output)
845\|  
846\|          return r
847\|
/ssl server/zookeeper fips/fips/AES256-GCM-SHA384/fips connectionXFail 52s 391ms
SSLV3_ALERT_HANDSHAKE_FAILURE
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/regression.py", line 223, in 
    regression()
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/regression.py", line 218, in regression
    Feature(run=load("ssl_server.tests.zookeeper_fips.feature", "feature"))
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../ssl_server/tests/zookeeper_fips/feature.py", line 434, in feature
    Feature(run=fips)
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../ssl_server/tests/zookeeper_fips/feature.py", line 319, in fips
    fips_connection(cipher_list=cipher_suite)
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../ssl_server/tests/zookeeper_fips/feature.py", line 309, in fips_connection
    check_clickhouse_connection_to_zookeeper()
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../ssl_server/tests/zookeeper/steps.py", line 448, in check_clickhouse_connection_to_zookeeper
    node.query(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../helpers/cluster.py", line 808, in query
    return self.query(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../helpers/cluster.py", line 808, in query
    return self.query(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../helpers/cluster.py", line 808, in query
    return self.query(
  [Previous line repeated 2 more times]
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../helpers/cluster.py", line 844, in query
    assert False, error(r.output)
AssertionError: Oops! Assertion failed

The following assertion was not satisfied
  assert False, error(r.output)

Description
  Received exception from server (version 23.3.19):
Code: 999. DB::Exception: Received from localhost:9000. Coordination::Exception. Coordination::Exception: Connection loss, path: All connection tries failed while connecting to ZooKeeper. nodes: secure://172.18.0.2:2281
Poco::Exception. Code: 1000, e.code() = 0, SSL Exception: error:10000410:SSL routines:OPENSSL_internal:SSLV3_ALERT_HANDSHAKE_FAILURE (version 23.3.19.34.altinityfips (altinity build)), 172.18.0.2:2281
Poco::Exception. Code: 1000, e.code() = 0, SSL Exception: error:10000410:SSL routines:OPENSSL_internal:SSLV3_ALERT_HANDSHAKE_FAILURE (version 23.3.19.34.altinityfips (altinity build)), 172.18.0.2:2281
Poco::Exception. Code: 1000, e.code() = 0, SSL Exception: error:10000410:SSL routines:OPENSSL_internal:SSLV3_ALERT_HANDSHAKE_FAILURE (version 23.3.19.34.altinityfips (altinity build)), 172.18.0.2:2281
. (KEEPER_EXCEPTION)
(query: SELECT * FROM system.zookeeper WHERE path = '/' FORMAT JSON
)

Assertion values
  assert False, error(r.output)
  ^ is False

Where
  File '/home/ubuntu/_work/ClickHouse/ClickHouse/ssl_server/../helpers/cluster.py', line 844 in 'query'

836\|                  assert message in r.output, error(r.output)
837\|  
838\|          if not ignore_exception:
839\|              if message is None or "Exception:" not in message:
840\|                  with Then("check if output has exception") if steps else NullStep():
841\|                      if "Exception:" in r.output:
842\|                          if raise_on_exception:
843\|                              raise QueryRuntimeException(r.output)
844\|>                         assert False, error(r.output)
845\|  
846\|          return r
847\|

Results

Test Name Result Duration
/ssl server OK 1h 24m
/ssl server/check certificate OK 25s 519ms
/ssl server/check certificate/system certificates OK 113ms
/ssl server/check certificate/show certificate OK 69ms
/ssl server/sanity OK 56ms
/ssl server/sanity/check non secure connection OK 55ms
/ssl server/ssl context OK 1m 26s
/ssl server/ssl context/enable ssl no server key passphrase OK 25s 532ms
/ssl server/ssl context/enable ssl no server key passphrase dynamically XFail 17s 718ms
/ssl server/ssl context/enable ssl with server key passphrase OK 25s 496ms
/ssl server/ssl context/enable ssl with server key passphrase dynamically XFail 17s 759ms
/ssl server/certificate authentication OK 52s 260ms
/ssl server/certificate authentication/rbac user no hostname OK 417ms
/ssl server/certificate authentication/rbac user hostname OK 430ms
/ssl server/certificate authentication/config user no hostname OK 1s 602ms
/ssl server/certificate authentication/config user hostname OK 910ms
/ssl server/verification modes OK 1m 10s
/ssl server/verification modes/none OK 11s 119ms
/ssl server/verification modes/none/check connections OK 148ms
/ssl server/verification modes/once OK 11s 296ms
/ssl server/verification modes/once/check connections OK 154ms
/ssl server/verification modes/once/check connections with client certificate and key specified OK 156ms
/ssl server/verification modes/relaxed OK 11s 338ms
/ssl server/verification modes/relaxed/check connections OK 153ms
/ssl server/verification modes/relaxed/check connections with client certificate and key specified OK 160ms
/ssl server/verification modes/strict OK 11s 176ms
/ssl server/verification modes/strict/check connections with client certificate and key specified OK 173ms
/ssl server/verification modes/fail cases XFail 803us
/ssl server/url table function OK 13m 20s
/ssl server/url table function/https server url function checks OK 12m 52s
/ssl server/url table function/https server url function checks/Connection with no protocols should be rejected OK 11s 86ms
/ssl server/url table function/https server url function checks/TLSv1.2 suite connection should work OK 11s 81ms
/ssl server/url table function/https server url function checks/TLSv1 suite connection should be rejected OK 11s 99ms
/ssl server/url table function/https server url function checks/TLSv1.1 suite connection should be rejected OK 11s 167ms
/ssl server/url table function/https server url function checks/TLSv1.3 suite connection should be rejected OK 11s 84ms
/ssl server/url table function/https server url function checks/just disabling TLSv1 suite connection should work OK 11s 101ms
/ssl server/url table function/https server url function checks/just disabling TLSv1.1 suite connection should work XFail 12s 147ms
/ssl server/url table function/https server url function checks/just disabling TLSv1.3 suite connection should work OK 11s 96ms
/ssl server/url table function/https server url function checks/connection using FIPS compatible cipher ECDHE-RSA-AES128-GCM-SHA256 should work OK 11s 105ms
/ssl server/url table function/https server url function checks/connection using FIPS compatible cipher ECDHE-RSA-AES256-GCM-SHA384 should work OK 12s 143ms
/ssl server/url table function/https server url function checks/connection using FIPS compatible cipher ECDHE-ECDSA-AES128-GCM-SHA256 should work XFail 11s 134ms
/ssl server/url table function/https server url function checks/connection using FIPS compatible cipher ECDHE-ECDSA-AES256-GCM-SHA384 should work XFail 11s 165ms
/ssl server/url table function/https server url function checks/connection using FIPS compatible cipher AES128-GCM-SHA256 should work OK 11s 114ms
/ssl server/url table function/https server url function checks/connection using FIPS compatible cipher AES256-GCM-SHA384 should work OK 11s 168ms
/ssl server/url table function/https server url function checks/connection using non-FIPS compatible cipher TLS_AES_256_GCM_SHA384 should be rejected OK 12s 124ms
/ssl server/url table function/https server url function checks/connection using non-FIPS compatible cipher TLS_CHACHA20_POLY1305_SHA256 should be rejected OK 12s 140ms
/ssl server/url table function/https server url function checks/connection using non-FIPS compatible cipher TLS_AES_128_GCM_SHA256 should be rejected OK 11s 90ms
/ssl server/url table function/https server url function checks/connection using non-FIPS compatible cipher DHE-RSA-AES256-GCM-SHA384 should be rejected OK 12s 124ms
/ssl server/url table function/https server url function checks/connection using non-FIPS compatible cipher ECDHE-ECDSA-CHACHA20-POLY1305 should be rejected OK 11s 132ms
/ssl server/url table function/https server url function checks/connection using non-FIPS compatible cipher ECDHE-RSA-CHACHA20-POLY1305 should be rejected OK 11s 120ms
/ssl server/url table function/https server url function checks/connection using non-FIPS compatible cipher DHE-RSA-CHACHA20-POLY1305 should be rejected OK 11s 139ms
/ssl server/url table function/https server url function checks/connection using non-FIPS compatible cipher DHE-RSA-AES128-GCM-SHA256 should be rejected OK 11s 99ms
/ssl server/url table function/https server url function checks/connection using non-FIPS compatible cipher ECDHE-ECDSA-AES256-SHA384 should be rejected OK 11s 125ms
/ssl server/url table function/https server url function checks/connection using non-FIPS compatible cipher ECDHE-RSA-AES256-SHA384 should be rejected OK 11s 105ms
/ssl server/url table function/https server url function checks/connection using non-FIPS compatible cipher DHE-RSA-AES256-SHA256 should be rejected OK 12s 116ms
/ssl server/url table function/https server url function checks/connection using non-FIPS compatible cipher ECDHE-ECDSA-AES128-SHA256 should be rejected OK 12s 150ms
/ssl server/url table function/https server url function checks/connection using non-FIPS compatible cipher ECDHE-RSA-AES128-SHA256 should be rejected OK 11s 119ms
/ssl server/url table function/https server url function checks/connection using non-FIPS compatible cipher DHE-RSA-AES128-SHA256 should be rejected OK 11s 114ms
/ssl server/url table function/https server url function checks/connection using non-FIPS compatible cipher ECDHE-ECDSA-AES256-SHA should be rejected OK 11s 192ms
/ssl server/url table function/https server url function checks/connection using non-FIPS compatible cipher ECDHE-RSA-AES256-SHA should be rejected OK 11s 108ms
/ssl server/url table function/https server url function checks/connection using non-FIPS compatible cipher DHE-RSA-AES256-SHA should be rejected OK 11s 195ms
/ssl server/url table function/https server url function checks/connection using non-FIPS compatible cipher ECDHE-ECDSA-AES128-SHA should be rejected OK 11s 134ms
/ssl server/url table function/https server url function checks/connection using non-FIPS compatible cipher ECDHE-RSA-AES128-SHA should be rejected OK 11s 184ms
/ssl server/url table function/https server url function checks/connection using non-FIPS compatible cipher DHE-RSA-AES128-SHA should be rejected OK 11s 232ms
/ssl server/url table function/https server url function checks/connection using non-FIPS compatible cipher RSA-PSK-AES256-GCM-SHA384 should be rejected OK 11s 173ms
/ssl server/url table function/https server url function checks/connection using non-FIPS compatible cipher DHE-PSK-AES256-GCM-SHA384 should be rejected OK 11s 185ms
/ssl server/url table function/https server url function checks/connection using non-FIPS compatible cipher RSA-PSK-CHACHA20-POLY1305 should be rejected OK 11s 140ms
/ssl server/url table function/https server url function checks/connection using non-FIPS compatible cipher DHE-PSK-CHACHA20-POLY1305 should be rejected OK 11s 146ms
/ssl server/url table function/https server url function checks/connection using non-FIPS compatible cipher ECDHE-PSK-CHACHA20-POLY1305 should be rejected OK 12s 195ms
/ssl server/url table function/https server url function checks/connection using non-FIPS compatible cipher PSK-AES256-GCM-SHA384 should be rejected OK 11s 208ms
/ssl server/url table function/https server url function checks/connection using non-FIPS compatible cipher PSK-CHACHA20-POLY1305 should be rejected OK 11s 214ms
/ssl server/url table function/https server url function checks/connection using non-FIPS compatible cipher RSA-PSK-AES128-GCM-SHA256 should be rejected OK 11s 234ms
/ssl server/url table function/https server url function checks/connection using non-FIPS compatible cipher DHE-PSK-AES128-GCM-SHA256 should be rejected OK 11s 199ms
/ssl server/url table function/https server url function checks/connection using non-FIPS compatible cipher PSK-AES128-GCM-SHA256 should be rejected OK 12s 228ms
/ssl server/url table function/https server url function checks/connection using non-FIPS compatible cipher AES256-SHA256 should be rejected OK 11s 216ms
/ssl server/url table function/https server url function checks/connection using non-FIPS compatible cipher AES128-SHA256 should be rejected OK 11s 256ms
/ssl server/url table function/https server url function checks/connection using non-FIPS compatible cipher ECDHE-PSK-AES256-CBC-SHA384 should be rejected OK 12s 206ms
/ssl server/url table function/https server url function checks/connection using non-FIPS compatible cipher ECDHE-PSK-AES256-CBC-SHA should be rejected OK 11s 196ms
/ssl server/url table function/https server url function checks/connection using non-FIPS compatible cipher SRP-RSA-AES-256-CBC-SHA should be rejected OK 11s 207ms
/ssl server/url table function/https server url function checks/connection using non-FIPS compatible cipher SRP-AES-256-CBC-SHA should be rejected OK 11s 169ms
/ssl server/url table function/https server url function checks/connection using non-FIPS compatible cipher RSA-PSK-AES256-CBC-SHA384 should be rejected OK 12s 215ms
/ssl server/url table function/https server url function checks/connection using non-FIPS compatible cipher DHE-PSK-AES256-CBC-SHA384 should be rejected OK 11s 169ms
/ssl server/url table function/https server url function checks/connection using non-FIPS compatible cipher RSA-PSK-AES256-CBC-SHA should be rejected OK 11s 169ms
/ssl server/url table function/https server url function checks/connection using non-FIPS compatible cipher DHE-PSK-AES256-CBC-SHA should be rejected OK 12s 186ms
/ssl server/url table function/https server url function checks/connection using non-FIPS compatible cipher AES256-SHA should be rejected OK 11s 179ms
/ssl server/url table function/https server url function checks/connection using non-FIPS compatible cipher PSK-AES256-CBC-SHA384 should be rejected OK 11s 233ms
/ssl server/url table function/https server url function checks/connection using non-FIPS compatible cipher PSK-AES256-CBC-SHA should be rejected OK 11s 268ms
/ssl server/url table function/https server url function checks/connection using non-FIPS compatible cipher ECDHE-PSK-AES128-CBC-SHA256 should be rejected OK 11s 218ms
/ssl server/url table function/https server url function checks/connection using non-FIPS compatible cipher ECDHE-PSK-AES128-CBC-SHA should be rejected OK 11s 283ms
/ssl server/url table function/https server url function checks/connection using non-FIPS compatible cipher SRP-RSA-AES-128-CBC-SHA should be rejected OK 11s 193ms
/ssl server/url table function/https server url function checks/connection using non-FIPS compatible cipher SRP-AES-128-CBC-SHA should be rejected OK 11s 219ms
/ssl server/url table function/https server url function checks/connection using non-FIPS compatible cipher RSA-PSK-AES128-CBC-SHA256 should be rejected OK 11s 196ms
/ssl server/url table function/https server url function checks/connection using non-FIPS compatible cipher DHE-PSK-AES128-CBC-SHA256 should be rejected OK 11s 201ms
/ssl server/url table function/https server url function checks/connection using non-FIPS compatible cipher RSA-PSK-AES128-CBC-SHA should be rejected OK 12s 236ms
/ssl server/url table function/https server url function checks/connection using non-FIPS compatible cipher DHE-PSK-AES128-CBC-SHA should be rejected OK 11s 223ms
/ssl server/url table function/https server url function checks/connection using non-FIPS compatible cipher AES128-SHA should be rejected OK 11s 222ms
/ssl server/url table function/https server url function checks/connection using non-FIPS compatible cipher PSK-AES128-CBC-SHA256 should be rejected OK 11s 210ms
/ssl server/url table function/https server url function checks/connection using non-FIPS compatible cipher PSK-AES128-CBC-SHA should be rejected OK 11s 204ms
/ssl server/url table function/http server url function checks OK 625ms
/ssl server/url table function/http server url function checks/I read data from the http server using url table function OK 286ms
/ssl server/dictionary OK 13m 32s
/ssl server/dictionary/https server dictionary checks OK 13m 5s
/ssl server/dictionary/https server dictionary checks/Connection with no protocols should be rejected OK 11s 310ms
/ssl server/dictionary/https server dictionary checks/TLSv1.2 suite connection should work OK 11s 414ms
/ssl server/dictionary/https server dictionary checks/TLSv1 suite connection should be rejected OK 11s 339ms
/ssl server/dictionary/https server dictionary checks/TLSv1.1 suite connection should be rejected OK 12s 363ms
/ssl server/dictionary/https server dictionary checks/TLSv1.3 suite connection should be rejected OK 11s 347ms
/ssl server/dictionary/https server dictionary checks/just disabling TLSv1 suite connection should work OK 11s 345ms
/ssl server/dictionary/https server dictionary checks/just disabling TLSv1.1 suite connection should work XFail 11s 396ms
/ssl server/dictionary/https server dictionary checks/just disabling TLSv1.3 suite connection should work OK 11s 415ms
/ssl server/dictionary/https server dictionary checks/connection using FIPS compatible cipher ECDHE-RSA-AES128-GCM-SHA256 should work OK 11s 362ms
/ssl server/dictionary/https server dictionary checks/connection using FIPS compatible cipher ECDHE-RSA-AES256-GCM-SHA384 should work OK 11s 318ms
/ssl server/dictionary/https server dictionary checks/connection using FIPS compatible cipher ECDHE-ECDSA-AES128-GCM-SHA256 should work XFail 11s 300ms
/ssl server/dictionary/https server dictionary checks/connection using FIPS compatible cipher ECDHE-ECDSA-AES256-GCM-SHA384 should work XFail 12s 317ms
/ssl server/dictionary/https server dictionary checks/connection using FIPS compatible cipher AES128-GCM-SHA256 should work OK 11s 375ms
/ssl server/dictionary/https server dictionary checks/connection using FIPS compatible cipher AES256-GCM-SHA384 should work OK 11s 381ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher TLS_AES_256_GCM_SHA384 should be rejected OK 12s 366ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher TLS_CHACHA20_POLY1305_SHA256 should be rejected OK 11s 416ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher TLS_AES_128_GCM_SHA256 should be rejected OK 11s 336ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher DHE-RSA-AES256-GCM-SHA384 should be rejected OK 11s 347ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher ECDHE-ECDSA-CHACHA20-POLY1305 should be rejected OK 11s 343ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher ECDHE-RSA-CHACHA20-POLY1305 should be rejected OK 11s 331ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher DHE-RSA-CHACHA20-POLY1305 should be rejected OK 11s 355ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher DHE-RSA-AES128-GCM-SHA256 should be rejected OK 12s 374ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher ECDHE-ECDSA-AES256-SHA384 should be rejected OK 11s 372ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher ECDHE-RSA-AES256-SHA384 should be rejected OK 11s 351ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher DHE-RSA-AES256-SHA256 should be rejected OK 12s 371ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher ECDHE-ECDSA-AES128-SHA256 should be rejected OK 11s 411ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher ECDHE-RSA-AES128-SHA256 should be rejected OK 11s 383ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher DHE-RSA-AES128-SHA256 should be rejected OK 11s 437ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher ECDHE-ECDSA-AES256-SHA should be rejected OK 11s 371ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher ECDHE-RSA-AES256-SHA should be rejected OK 11s 363ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher DHE-RSA-AES256-SHA should be rejected OK 12s 310ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher ECDHE-ECDSA-AES128-SHA should be rejected OK 11s 369ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher ECDHE-RSA-AES128-SHA should be rejected OK 11s 380ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher DHE-RSA-AES128-SHA should be rejected OK 11s 420ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher RSA-PSK-AES256-GCM-SHA384 should be rejected OK 11s 433ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher DHE-PSK-AES256-GCM-SHA384 should be rejected OK 11s 324ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher RSA-PSK-CHACHA20-POLY1305 should be rejected OK 11s 421ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher DHE-PSK-CHACHA20-POLY1305 should be rejected OK 11s 336ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher ECDHE-PSK-CHACHA20-POLY1305 should be rejected OK 11s 339ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher PSK-AES256-GCM-SHA384 should be rejected OK 11s 382ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher PSK-CHACHA20-POLY1305 should be rejected OK 11s 379ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher RSA-PSK-AES128-GCM-SHA256 should be rejected OK 11s 354ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher DHE-PSK-AES128-GCM-SHA256 should be rejected OK 11s 446ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher PSK-AES128-GCM-SHA256 should be rejected OK 11s 383ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher AES256-SHA256 should be rejected OK 11s 351ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher AES128-SHA256 should be rejected OK 11s 389ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher ECDHE-PSK-AES256-CBC-SHA384 should be rejected OK 11s 363ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher ECDHE-PSK-AES256-CBC-SHA should be rejected OK 11s 415ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher SRP-RSA-AES-256-CBC-SHA should be rejected OK 11s 344ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher SRP-AES-256-CBC-SHA should be rejected OK 12s 373ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher RSA-PSK-AES256-CBC-SHA384 should be rejected OK 12s 412ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher DHE-PSK-AES256-CBC-SHA384 should be rejected OK 12s 416ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher RSA-PSK-AES256-CBC-SHA should be rejected OK 11s 381ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher DHE-PSK-AES256-CBC-SHA should be rejected OK 11s 434ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher AES256-SHA should be rejected OK 11s 433ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher PSK-AES256-CBC-SHA384 should be rejected OK 11s 394ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher PSK-AES256-CBC-SHA should be rejected OK 11s 433ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher ECDHE-PSK-AES128-CBC-SHA256 should be rejected OK 11s 390ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher ECDHE-PSK-AES128-CBC-SHA should be rejected OK 11s 399ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher SRP-RSA-AES-128-CBC-SHA should be rejected OK 11s 421ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher SRP-AES-128-CBC-SHA should be rejected OK 11s 387ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher RSA-PSK-AES128-CBC-SHA256 should be rejected OK 12s 420ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher DHE-PSK-AES128-CBC-SHA256 should be rejected OK 11s 435ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher RSA-PSK-AES128-CBC-SHA should be rejected OK 11s 354ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher DHE-PSK-AES128-CBC-SHA should be rejected OK 11s 409ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher AES128-SHA should be rejected OK 11s 429ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher PSK-AES128-CBC-SHA256 should be rejected OK 11s 433ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher PSK-AES128-CBC-SHA should be rejected OK 12s 425ms
/ssl server/dictionary/http server dictionary checks OK 771ms
/ssl server/dictionary/http server dictionary checks/connection to http server using a dictionary OK 426ms
/ssl server/fips OK 7m 17s
/ssl server/fips/fips check OK 123ms
/ssl server/fips/fips check/log check OK 58ms
/ssl server/fips/fips check/check build options OK 64ms
/ssl server/fips/break hash XFail 666us
/ssl server/fips/server OK 59s 597ms
/ssl server/fips/server/tcp connection OK 15s 17ms
/ssl server/fips/server/tcp connection/openssl s_client OK 1s 729ms
/ssl server/fips/server/tcp connection/clickhouse-client OK 13s 286ms
/ssl server/fips/server/tcp connection/clickhouse-client/fips clickhouse-client OK 6s 387ms
/ssl server/fips/server/tcp connection/clickhouse-client/non fips clickhouse-client OK 6s 898ms
/ssl server/fips/server/https connection OK 3s 211ms
/ssl server/fips/server/https connection/openssl s_client OK 1s 555ms
/ssl server/fips/server/https connection/curl OK 1s 655ms
/ssl server/fips/server/all protocols disabled OK 30s 140ms
/ssl server/fips/server/all protocols disabled/tcp connection OK 14s 779ms
/ssl server/fips/server/all protocols disabled/tcp connection/openssl s_client OK 1s 590ms
/ssl server/fips/server/all protocols disabled/tcp connection/clickhouse-client OK 13s 187ms
/ssl server/fips/server/all protocols disabled/tcp connection/clickhouse-client/fips clickhouse-client OK 6s 268ms
/ssl server/fips/server/all protocols disabled/tcp connection/clickhouse-client/non fips clickhouse-client OK 6s 918ms
/ssl server/fips/server/all protocols disabled/https connection OK 3s 93ms
/ssl server/fips/server/all protocols disabled/https connection/openssl s_client OK 1s 524ms
/ssl server/fips/server/all protocols disabled/https connection/curl OK 1s 567ms
/ssl server/fips/clickhouse client OK 40s 284ms
/ssl server/fips/clickhouse client/clickhouse-client with non restricted server OK 13s 623ms
/ssl server/fips/clickhouse client/clickhouse-client with non restricted server/fips clickhouse-client OK 6s 515ms
/ssl server/fips/clickhouse client/clickhouse-client with non restricted server/non fips clickhouse-client OK 7s 106ms
/ssl server/fips/clickhouse client/clickhouse-client with restricted server OK 13s 385ms
/ssl server/fips/clickhouse client/clickhouse-client with restricted server/fips clickhouse-client OK 6s 350ms
/ssl server/fips/clickhouse client/clickhouse-client with restricted server/non fips clickhouse-client OK 7s 33ms
/ssl server/fips/clickhouse server acting as a client OK 5m 11s
/ssl server/fips/clickhouse server acting as a client/url table function OK 2m 13s
/ssl server/fips/clickhouse server acting as a client/url table function/Connection with Protocol=TLS should be accepted OK 457ms
/ssl server/fips/clickhouse server acting as a client/url table function/Connection with Protocol=TLSv1 should be rejected OK 431ms
/ssl server/fips/clickhouse server acting as a client/url table function/Connection with Protocol=TLSv1.1 should be rejected OK 432ms
/ssl server/fips/clickhouse server acting as a client/url table function/Connection with Protocol=TLSv1.2 should be accepted OK 416ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection using FIPS compatible cipher ECDHE-RSA-AES128-GCM-SHA256 should work OK 444ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, TLS_AES_256_GCM_SHA384 OK 443ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, TLS_CHACHA20_POLY1305_SHA256 OK 451ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, TLS_AES_128_GCM_SHA256 OK 442ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, ECDHE-ECDSA-AES256-GCM-SHA384 OK 421ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, ECDHE-RSA-AES256-GCM-SHA384 OK 411ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, DHE-RSA-AES256-GCM-SHA384 OK 419ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, ECDHE-ECDSA-CHACHA20-POLY1305 OK 440ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, ECDHE-RSA-CHACHA20-POLY1305 OK 444ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, DHE-RSA-CHACHA20-POLY1305 OK 456ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, ECDHE-ECDSA-AES128-GCM-SHA256 OK 442ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, ECDHE-RSA-AES128-GCM-SHA256 OK 457ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, DHE-RSA-AES128-GCM-SHA256 OK 437ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, ECDHE-ECDSA-AES256-SHA384 OK 470ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, ECDHE-RSA-AES256-SHA384 OK 473ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, DHE-RSA-AES256-SHA256 OK 432ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, ECDHE-ECDSA-AES128-SHA256 OK 462ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, ECDHE-RSA-AES128-SHA256 OK 462ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, DHE-RSA-AES128-SHA256 OK 444ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, ECDHE-ECDSA-AES256-SHA OK 452ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, ECDHE-RSA-AES256-SHA OK 458ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, DHE-RSA-AES256-SHA OK 445ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, ECDHE-ECDSA-AES128-SHA OK 458ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, ECDHE-RSA-AES128-SHA OK 461ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, DHE-RSA-AES128-SHA OK 442ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, RSA-PSK-AES256-GCM-SHA384 OK 426ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, DHE-PSK-AES256-GCM-SHA384 OK 469ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, RSA-PSK-CHACHA20-POLY1305 OK 456ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, DHE-PSK-CHACHA20-POLY1305 OK 420ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, ECDHE-PSK-CHACHA20-POLY1305 OK 414ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, AES256-GCM-SHA384 OK 431ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, PSK-AES256-GCM-SHA384 OK 427ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, PSK-CHACHA20-POLY1305 OK 468ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, RSA-PSK-AES128-GCM-SHA256 OK 450ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, DHE-PSK-AES128-GCM-SHA256 OK 448ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, AES128-GCM-SHA256 OK 451ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, PSK-AES128-GCM-SHA256 OK 456ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, AES256-SHA256 OK 427ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, AES128-SHA256 OK 467ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, ECDHE-PSK-AES256-CBC-SHA384 OK 434ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, ECDHE-PSK-AES256-CBC-SHA OK 436ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, SRP-RSA-AES-256-CBC-SHA OK 439ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, SRP-AES-256-CBC-SHA OK 442ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, RSA-PSK-AES256-CBC-SHA384 OK 449ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, DHE-PSK-AES256-CBC-SHA384 OK 448ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, RSA-PSK-AES256-CBC-SHA OK 431ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, DHE-PSK-AES256-CBC-SHA OK 436ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, AES256-SHA OK 430ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, PSK-AES256-CBC-SHA384 OK 435ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, PSK-AES256-CBC-SHA OK 445ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, ECDHE-PSK-AES128-CBC-SHA256 OK 458ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, ECDHE-PSK-AES128-CBC-SHA OK 477ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, SRP-RSA-AES-128-CBC-SHA OK 438ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, SRP-AES-128-CBC-SHA OK 448ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, RSA-PSK-AES128-CBC-SHA256 OK 439ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, DHE-PSK-AES128-CBC-SHA256 OK 450ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, RSA-PSK-AES128-CBC-SHA OK 451ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, DHE-PSK-AES128-CBC-SHA OK 436ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, AES128-SHA OK 440ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, PSK-AES128-CBC-SHA256 OK 428ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, PSK-AES128-CBC-SHA OK 455ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection using FIPS compatible cipher ECDHE-RSA-AES256-GCM-SHA384 should work OK 460ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, TLS_AES_256_GCM_SHA384 OK 474ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, TLS_CHACHA20_POLY1305_SHA256 OK 460ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, TLS_AES_128_GCM_SHA256 OK 443ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, ECDHE-ECDSA-AES256-GCM-SHA384 OK 425ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, ECDHE-RSA-AES256-GCM-SHA384 OK 451ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, DHE-RSA-AES256-GCM-SHA384 OK 473ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, ECDHE-ECDSA-CHACHA20-POLY1305 OK 435ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, ECDHE-RSA-CHACHA20-POLY1305 OK 510ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, DHE-RSA-CHACHA20-POLY1305 OK 458ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, ECDHE-ECDSA-AES128-GCM-SHA256 OK 424ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, ECDHE-RSA-AES128-GCM-SHA256 OK 416ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, DHE-RSA-AES128-GCM-SHA256 OK 470ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, ECDHE-ECDSA-AES256-SHA384 OK 441ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, ECDHE-RSA-AES256-SHA384 OK 451ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, DHE-RSA-AES256-SHA256 OK 460ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, ECDHE-ECDSA-AES128-SHA256 OK 426ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, ECDHE-RSA-AES128-SHA256 OK 438ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, DHE-RSA-AES128-SHA256 OK 440ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, ECDHE-ECDSA-AES256-SHA OK 462ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, ECDHE-RSA-AES256-SHA OK 448ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, DHE-RSA-AES256-SHA OK 423ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, ECDHE-ECDSA-AES128-SHA OK 440ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, ECDHE-RSA-AES128-SHA OK 448ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, DHE-RSA-AES128-SHA OK 433ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, RSA-PSK-AES256-GCM-SHA384 OK 479ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, DHE-PSK-AES256-GCM-SHA384 OK 470ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, RSA-PSK-CHACHA20-POLY1305 OK 462ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, DHE-PSK-CHACHA20-POLY1305 OK 452ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, ECDHE-PSK-CHACHA20-POLY1305 OK 439ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, AES256-GCM-SHA384 OK 474ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, PSK-AES256-GCM-SHA384 OK 494ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, PSK-CHACHA20-POLY1305 OK 452ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, RSA-PSK-AES128-GCM-SHA256 OK 474ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, DHE-PSK-AES128-GCM-SHA256 OK 459ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, AES128-GCM-SHA256 OK 448ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, PSK-AES128-GCM-SHA256 OK 452ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, AES256-SHA256 OK 458ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, AES128-SHA256 OK 443ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, ECDHE-PSK-AES256-CBC-SHA384 OK 439ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, ECDHE-PSK-AES256-CBC-SHA OK 460ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, SRP-RSA-AES-256-CBC-SHA OK 423ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, SRP-AES-256-CBC-SHA OK 441ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, RSA-PSK-AES256-CBC-SHA384 OK 418ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, DHE-PSK-AES256-CBC-SHA384 OK 440ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, RSA-PSK-AES256-CBC-SHA OK 436ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, DHE-PSK-AES256-CBC-SHA OK 435ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, AES256-SHA OK 471ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, PSK-AES256-CBC-SHA384 OK 421ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, PSK-AES256-CBC-SHA OK 431ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, ECDHE-PSK-AES128-CBC-SHA256 OK 458ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, ECDHE-PSK-AES128-CBC-SHA OK 474ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, SRP-RSA-AES-128-CBC-SHA OK 451ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, SRP-AES-128-CBC-SHA OK 420ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, RSA-PSK-AES128-CBC-SHA256 OK 428ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, DHE-PSK-AES128-CBC-SHA256 OK 440ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, RSA-PSK-AES128-CBC-SHA OK 424ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, DHE-PSK-AES128-CBC-SHA OK 435ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, AES128-SHA OK 419ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, PSK-AES128-CBC-SHA256 OK 433ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, PSK-AES128-CBC-SHA OK 456ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection using FIPS compatible cipher ECDHE-ECDSA-AES128-GCM-SHA256 should work XFail 679us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, TLS_AES_256_GCM_SHA384 XFail 631us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, TLS_CHACHA20_POLY1305_SHA256 XFail 393us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, TLS_AES_128_GCM_SHA256 XFail 366us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, ECDHE-ECDSA-AES256-GCM-SHA384 XFail 474us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, ECDHE-RSA-AES256-GCM-SHA384 XFail 580us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, DHE-RSA-AES256-GCM-SHA384 XFail 462us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, ECDHE-ECDSA-CHACHA20-POLY1305 XFail 370us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, ECDHE-RSA-CHACHA20-POLY1305 XFail 393us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, DHE-RSA-CHACHA20-POLY1305 XFail 377us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, ECDHE-ECDSA-AES128-GCM-SHA256 XFail 514us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, ECDHE-RSA-AES128-GCM-SHA256 XFail 400us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, DHE-RSA-AES128-GCM-SHA256 XFail 371us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, ECDHE-ECDSA-AES256-SHA384 XFail 366us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, ECDHE-RSA-AES256-SHA384 XFail 435us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, DHE-RSA-AES256-SHA256 XFail 527us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, ECDHE-ECDSA-AES128-SHA256 XFail 359us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, ECDHE-RSA-AES128-SHA256 XFail 365us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, DHE-RSA-AES128-SHA256 XFail 359us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, ECDHE-ECDSA-AES256-SHA XFail 565us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, ECDHE-RSA-AES256-SHA XFail 375us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, DHE-RSA-AES256-SHA XFail 447us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, ECDHE-ECDSA-AES128-SHA XFail 380us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, ECDHE-RSA-AES128-SHA XFail 381us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, DHE-RSA-AES128-SHA XFail 606us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, RSA-PSK-AES256-GCM-SHA384 XFail 431us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, DHE-PSK-AES256-GCM-SHA384 XFail 434us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, RSA-PSK-CHACHA20-POLY1305 XFail 451us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, DHE-PSK-CHACHA20-POLY1305 XFail 365us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, ECDHE-PSK-CHACHA20-POLY1305 XFail 510us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, AES256-GCM-SHA384 XFail 381us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, PSK-AES256-GCM-SHA384 XFail 359us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, PSK-CHACHA20-POLY1305 XFail 363us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, RSA-PSK-AES128-GCM-SHA256 XFail 536us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, DHE-PSK-AES128-GCM-SHA256 XFail 366us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, AES128-GCM-SHA256 XFail 354us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, PSK-AES128-GCM-SHA256 XFail 360us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, AES256-SHA256 XFail 430us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, AES128-SHA256 XFail 506us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, ECDHE-PSK-AES256-CBC-SHA384 XFail 358us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, ECDHE-PSK-AES256-CBC-SHA XFail 438us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, SRP-RSA-AES-256-CBC-SHA XFail 358us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, SRP-AES-256-CBC-SHA XFail 366us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, RSA-PSK-AES256-CBC-SHA384 XFail 539us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, DHE-PSK-AES256-CBC-SHA384 XFail 386us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, RSA-PSK-AES256-CBC-SHA XFail 360us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, DHE-PSK-AES256-CBC-SHA XFail 355us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, AES256-SHA XFail 546us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, PSK-AES256-CBC-SHA384 XFail 363us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, PSK-AES256-CBC-SHA XFail 362us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, ECDHE-PSK-AES128-CBC-SHA256 XFail 372us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, ECDHE-PSK-AES128-CBC-SHA XFail 379us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, SRP-RSA-AES-128-CBC-SHA XFail 1ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, SRP-AES-128-CBC-SHA XFail 404us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, RSA-PSK-AES128-CBC-SHA256 XFail 369us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, DHE-PSK-AES128-CBC-SHA256 XFail 398us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, RSA-PSK-AES128-CBC-SHA XFail 366us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, DHE-PSK-AES128-CBC-SHA XFail 22ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, AES128-SHA XFail 374us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, PSK-AES128-CBC-SHA256 XFail 420us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, PSK-AES128-CBC-SHA XFail 460us
/ssl server/fips/clickhouse server acting as a client/url table function/connection using FIPS compatible cipher ECDHE-ECDSA-AES256-GCM-SHA384 should work XFail 422us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, TLS_AES_256_GCM_SHA384 XFail 381us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, TLS_CHACHA20_POLY1305_SHA256 XFail 380us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, TLS_AES_128_GCM_SHA256 XFail 473us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, ECDHE-ECDSA-AES256-GCM-SHA384 XFail 367us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, ECDHE-RSA-AES256-GCM-SHA384 XFail 360us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, DHE-RSA-AES256-GCM-SHA384 XFail 458us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, ECDHE-ECDSA-CHACHA20-POLY1305 XFail 464us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, ECDHE-RSA-CHACHA20-POLY1305 XFail 354us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, DHE-RSA-CHACHA20-POLY1305 XFail 367us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, ECDHE-ECDSA-AES128-GCM-SHA256 XFail 377us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, ECDHE-RSA-AES128-GCM-SHA256 XFail 360us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, DHE-RSA-AES128-GCM-SHA256 XFail 473us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, ECDHE-ECDSA-AES256-SHA384 XFail 465us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, ECDHE-RSA-AES256-SHA384 XFail 370us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, DHE-RSA-AES256-SHA256 XFail 372us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, ECDHE-ECDSA-AES128-SHA256 XFail 468us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, ECDHE-RSA-AES128-SHA256 XFail 734us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, DHE-RSA-AES128-SHA256 XFail 371us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, ECDHE-ECDSA-AES256-SHA XFail 359us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, ECDHE-RSA-AES256-SHA XFail 366us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, DHE-RSA-AES256-SHA XFail 519us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, ECDHE-ECDSA-AES128-SHA XFail 380us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, ECDHE-RSA-AES128-SHA XFail 369us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, DHE-RSA-AES128-SHA XFail 371us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, RSA-PSK-AES256-GCM-SHA384 XFail 479us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, DHE-PSK-AES256-GCM-SHA384 XFail 451us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, RSA-PSK-CHACHA20-POLY1305 XFail 389us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, DHE-PSK-CHACHA20-POLY1305 XFail 344us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, ECDHE-PSK-CHACHA20-POLY1305 XFail 344us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, AES256-GCM-SHA384 XFail 502us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, PSK-AES256-GCM-SHA384 XFail 358us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, PSK-CHACHA20-POLY1305 XFail 425us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, RSA-PSK-AES128-GCM-SHA256 XFail 356us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, DHE-PSK-AES128-GCM-SHA256 XFail 488us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, AES128-GCM-SHA256 XFail 372us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, PSK-AES128-GCM-SHA256 XFail 342us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, AES256-SHA256 XFail 343us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, AES128-SHA256 XFail 384us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, ECDHE-PSK-AES256-CBC-SHA384 XFail 479us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, ECDHE-PSK-AES256-CBC-SHA XFail 352us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, SRP-RSA-AES-256-CBC-SHA XFail 364us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, SRP-AES-256-CBC-SHA XFail 381us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, RSA-PSK-AES256-CBC-SHA384 XFail 472us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, DHE-PSK-AES256-CBC-SHA384 XFail 337us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, RSA-PSK-AES256-CBC-SHA XFail 345us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, DHE-PSK-AES256-CBC-SHA XFail 340us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, AES256-SHA XFail 335us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, PSK-AES256-CBC-SHA384 XFail 1ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, PSK-AES256-CBC-SHA XFail 351us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, ECDHE-PSK-AES128-CBC-SHA256 XFail 337us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, ECDHE-PSK-AES128-CBC-SHA XFail 362us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, SRP-RSA-AES-128-CBC-SHA XFail 460us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, SRP-AES-128-CBC-SHA XFail 350us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, RSA-PSK-AES128-CBC-SHA256 XFail 353us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, DHE-PSK-AES128-CBC-SHA256 XFail 354us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, RSA-PSK-AES128-CBC-SHA XFail 328us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, DHE-PSK-AES128-CBC-SHA XFail 456us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, AES128-SHA XFail 363us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, PSK-AES128-CBC-SHA256 XFail 326us
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, PSK-AES128-CBC-SHA XFail 326us
/ssl server/fips/clickhouse server acting as a client/url table function/connection using FIPS compatible cipher AES128-GCM-SHA256 should work OK 429ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, TLS_AES_256_GCM_SHA384 OK 472ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, TLS_CHACHA20_POLY1305_SHA256 OK 456ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, TLS_AES_128_GCM_SHA256 OK 427ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, ECDHE-ECDSA-AES256-GCM-SHA384 OK 475ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, ECDHE-RSA-AES256-GCM-SHA384 OK 478ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, DHE-RSA-AES256-GCM-SHA384 OK 485ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, ECDHE-ECDSA-CHACHA20-POLY1305 OK 438ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, ECDHE-RSA-CHACHA20-POLY1305 OK 439ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, DHE-RSA-CHACHA20-POLY1305 OK 456ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, ECDHE-ECDSA-AES128-GCM-SHA256 OK 492ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, ECDHE-RSA-AES128-GCM-SHA256 OK 441ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, DHE-RSA-AES128-GCM-SHA256 OK 455ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, ECDHE-ECDSA-AES256-SHA384 OK 484ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, ECDHE-RSA-AES256-SHA384 OK 457ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, DHE-RSA-AES256-SHA256 OK 485ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, ECDHE-ECDSA-AES128-SHA256 OK 466ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, ECDHE-RSA-AES128-SHA256 OK 465ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, DHE-RSA-AES128-SHA256 OK 453ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, ECDHE-ECDSA-AES256-SHA OK 470ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, ECDHE-RSA-AES256-SHA OK 457ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, DHE-RSA-AES256-SHA OK 462ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, ECDHE-ECDSA-AES128-SHA OK 433ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, ECDHE-RSA-AES128-SHA OK 467ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, DHE-RSA-AES128-SHA OK 454ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, RSA-PSK-AES256-GCM-SHA384 OK 437ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, DHE-PSK-AES256-GCM-SHA384 OK 434ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, RSA-PSK-CHACHA20-POLY1305 OK 435ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, DHE-PSK-CHACHA20-POLY1305 OK 455ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, ECDHE-PSK-CHACHA20-POLY1305 OK 443ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, AES256-GCM-SHA384 OK 441ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, PSK-AES256-GCM-SHA384 OK 475ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, PSK-CHACHA20-POLY1305 OK 449ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, RSA-PSK-AES128-GCM-SHA256 OK 469ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, DHE-PSK-AES128-GCM-SHA256 OK 432ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, AES128-GCM-SHA256 OK 448ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, PSK-AES128-GCM-SHA256 OK 441ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, AES256-SHA256 OK 443ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, AES128-SHA256 OK 461ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, ECDHE-PSK-AES256-CBC-SHA384 OK 464ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, ECDHE-PSK-AES256-CBC-SHA OK 428ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, SRP-RSA-AES-256-CBC-SHA OK 423ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, SRP-AES-256-CBC-SHA OK 452ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, RSA-PSK-AES256-CBC-SHA384 OK 454ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, DHE-PSK-AES256-CBC-SHA384 OK 458ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, RSA-PSK-AES256-CBC-SHA OK 446ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, DHE-PSK-AES256-CBC-SHA OK 463ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, AES256-SHA OK 490ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, PSK-AES256-CBC-SHA384 OK 487ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, PSK-AES256-CBC-SHA OK 452ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, ECDHE-PSK-AES128-CBC-SHA256 OK 446ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, ECDHE-PSK-AES128-CBC-SHA OK 435ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, SRP-RSA-AES-128-CBC-SHA OK 431ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, SRP-AES-128-CBC-SHA OK 423ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, RSA-PSK-AES128-CBC-SHA256 OK 423ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, DHE-PSK-AES128-CBC-SHA256 OK 452ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, RSA-PSK-AES128-CBC-SHA OK 467ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, DHE-PSK-AES128-CBC-SHA OK 468ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, AES128-SHA OK 442ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, PSK-AES128-CBC-SHA256 OK 444ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, PSK-AES128-CBC-SHA OK 449ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection using FIPS compatible cipher AES256-GCM-SHA384 should work OK 439ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, TLS_AES_256_GCM_SHA384 OK 460ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, TLS_CHACHA20_POLY1305_SHA256 OK 437ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, TLS_AES_128_GCM_SHA256 OK 433ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, ECDHE-ECDSA-AES256-GCM-SHA384 OK 467ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, ECDHE-RSA-AES256-GCM-SHA384 OK 464ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, DHE-RSA-AES256-GCM-SHA384 OK 443ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, ECDHE-ECDSA-CHACHA20-POLY1305 OK 441ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, ECDHE-RSA-CHACHA20-POLY1305 OK 455ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, DHE-RSA-CHACHA20-POLY1305 OK 429ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, ECDHE-ECDSA-AES128-GCM-SHA256 OK 437ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, ECDHE-RSA-AES128-GCM-SHA256 OK 458ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, DHE-RSA-AES128-GCM-SHA256 OK 437ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, ECDHE-ECDSA-AES256-SHA384 OK 427ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, ECDHE-RSA-AES256-SHA384 OK 440ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, DHE-RSA-AES256-SHA256 OK 459ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, ECDHE-ECDSA-AES128-SHA256 OK 451ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, ECDHE-RSA-AES128-SHA256 OK 449ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, DHE-RSA-AES128-SHA256 OK 434ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, ECDHE-ECDSA-AES256-SHA OK 441ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, ECDHE-RSA-AES256-SHA OK 443ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, DHE-RSA-AES256-SHA OK 462ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, ECDHE-ECDSA-AES128-SHA OK 481ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, ECDHE-RSA-AES128-SHA OK 451ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, DHE-RSA-AES128-SHA OK 450ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, RSA-PSK-AES256-GCM-SHA384 OK 424ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, DHE-PSK-AES256-GCM-SHA384 OK 447ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, RSA-PSK-CHACHA20-POLY1305 OK 456ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, DHE-PSK-CHACHA20-POLY1305 OK 428ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, ECDHE-PSK-CHACHA20-POLY1305 OK 457ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, AES256-GCM-SHA384 OK 435ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, PSK-AES256-GCM-SHA384 OK 430ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, PSK-CHACHA20-POLY1305 OK 469ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, RSA-PSK-AES128-GCM-SHA256 OK 453ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, DHE-PSK-AES128-GCM-SHA256 OK 490ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, AES128-GCM-SHA256 OK 457ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, PSK-AES128-GCM-SHA256 OK 458ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, AES256-SHA256 OK 454ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, AES128-SHA256 OK 438ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, ECDHE-PSK-AES256-CBC-SHA384 OK 445ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, ECDHE-PSK-AES256-CBC-SHA OK 436ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, SRP-RSA-AES-256-CBC-SHA OK 466ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, SRP-AES-256-CBC-SHA OK 447ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, RSA-PSK-AES256-CBC-SHA384 OK 446ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, DHE-PSK-AES256-CBC-SHA384 OK 444ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, RSA-PSK-AES256-CBC-SHA OK 461ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, DHE-PSK-AES256-CBC-SHA OK 436ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, AES256-SHA OK 454ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, PSK-AES256-CBC-SHA384 OK 424ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, PSK-AES256-CBC-SHA OK 461ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, ECDHE-PSK-AES128-CBC-SHA256 OK 438ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, ECDHE-PSK-AES128-CBC-SHA OK 422ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, SRP-RSA-AES-128-CBC-SHA OK 428ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, SRP-AES-128-CBC-SHA OK 415ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, RSA-PSK-AES128-CBC-SHA256 OK 429ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, DHE-PSK-AES128-CBC-SHA256 OK 439ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, RSA-PSK-AES128-CBC-SHA OK 439ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, DHE-PSK-AES128-CBC-SHA OK 444ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, AES128-SHA OK 439ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, PSK-AES128-CBC-SHA256 OK 453ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, PSK-AES128-CBC-SHA OK 444ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection using non-FIPS compatible cipher TLS_AES_256_GCM_SHA384 should be rejected XFail 1ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection using non-FIPS compatible cipher TLS_CHACHA20_POLY1305_SHA256 should be rejected XFail 646us
/ssl server/fips/clickhouse server acting as a client/url table function/connection using non-FIPS compatible cipher TLS_AES_128_GCM_SHA256 should be rejected XFail 676us
/ssl server/fips/clickhouse server acting as a client/url table function/connection using non-FIPS compatible cipher DHE-RSA-AES256-GCM-SHA384 should be rejected OK 435ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection using non-FIPS compatible cipher ECDHE-ECDSA-CHACHA20-POLY1305 should be rejected OK 428ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection using non-FIPS compatible cipher ECDHE-RSA-CHACHA20-POLY1305 should be rejected OK 423ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection using non-FIPS compatible cipher DHE-RSA-CHACHA20-POLY1305 should be rejected OK 414ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection using non-FIPS compatible cipher DHE-RSA-AES128-GCM-SHA256 should be rejected OK 433ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection using non-FIPS compatible cipher ECDHE-ECDSA-AES256-SHA384 should be rejected OK 440ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection using non-FIPS compatible cipher ECDHE-RSA-AES256-SHA384 should be rejected OK 444ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection using non-FIPS compatible cipher DHE-RSA-AES256-SHA256 should be rejected OK 433ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection using non-FIPS compatible cipher ECDHE-ECDSA-AES128-SHA256 should be rejected OK 437ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection using non-FIPS compatible cipher ECDHE-RSA-AES128-SHA256 should be rejected OK 489ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection using non-FIPS compatible cipher DHE-RSA-AES128-SHA256 should be rejected OK 451ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection using non-FIPS compatible cipher ECDHE-ECDSA-AES256-SHA should be rejected OK 421ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection using non-FIPS compatible cipher ECDHE-RSA-AES256-SHA should be rejected OK 444ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection using non-FIPS compatible cipher DHE-RSA-AES256-SHA should be rejected OK 451ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection using non-FIPS compatible cipher ECDHE-ECDSA-AES128-SHA should be rejected OK 460ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection using non-FIPS compatible cipher ECDHE-RSA-AES128-SHA should be rejected OK 481ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection using non-FIPS compatible cipher DHE-RSA-AES128-SHA should be rejected OK 478ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection using non-FIPS compatible cipher RSA-PSK-AES256-GCM-SHA384 should be rejected OK 440ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection using non-FIPS compatible cipher DHE-PSK-AES256-GCM-SHA384 should be rejected OK 434ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection using non-FIPS compatible cipher RSA-PSK-CHACHA20-POLY1305 should be rejected OK 440ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection using non-FIPS compatible cipher DHE-PSK-CHACHA20-POLY1305 should be rejected OK 449ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection using non-FIPS compatible cipher ECDHE-PSK-CHACHA20-POLY1305 should be rejected OK 435ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection using non-FIPS compatible cipher PSK-AES256-GCM-SHA384 should be rejected OK 439ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection using non-FIPS compatible cipher PSK-CHACHA20-POLY1305 should be rejected OK 432ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection using non-FIPS compatible cipher RSA-PSK-AES128-GCM-SHA256 should be rejected OK 436ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection using non-FIPS compatible cipher DHE-PSK-AES128-GCM-SHA256 should be rejected OK 467ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection using non-FIPS compatible cipher PSK-AES128-GCM-SHA256 should be rejected OK 439ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection using non-FIPS compatible cipher AES256-SHA256 should be rejected OK 460ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection using non-FIPS compatible cipher AES128-SHA256 should be rejected OK 450ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection using non-FIPS compatible cipher ECDHE-PSK-AES256-CBC-SHA384 should be rejected OK 431ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection using non-FIPS compatible cipher ECDHE-PSK-AES256-CBC-SHA should be rejected OK 468ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection using non-FIPS compatible cipher SRP-RSA-AES-256-CBC-SHA should be rejected OK 464ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection using non-FIPS compatible cipher SRP-AES-256-CBC-SHA should be rejected OK 421ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection using non-FIPS compatible cipher RSA-PSK-AES256-CBC-SHA384 should be rejected OK 442ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection using non-FIPS compatible cipher DHE-PSK-AES256-CBC-SHA384 should be rejected OK 448ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection using non-FIPS compatible cipher RSA-PSK-AES256-CBC-SHA should be rejected OK 423ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection using non-FIPS compatible cipher DHE-PSK-AES256-CBC-SHA should be rejected OK 468ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection using non-FIPS compatible cipher AES256-SHA should be rejected OK 439ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection using non-FIPS compatible cipher PSK-AES256-CBC-SHA384 should be rejected OK 428ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection using non-FIPS compatible cipher PSK-AES256-CBC-SHA should be rejected OK 428ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection using non-FIPS compatible cipher ECDHE-PSK-AES128-CBC-SHA256 should be rejected OK 440ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection using non-FIPS compatible cipher ECDHE-PSK-AES128-CBC-SHA should be rejected OK 458ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection using non-FIPS compatible cipher SRP-RSA-AES-128-CBC-SHA should be rejected OK 490ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection using non-FIPS compatible cipher SRP-AES-128-CBC-SHA should be rejected OK 440ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection using non-FIPS compatible cipher RSA-PSK-AES128-CBC-SHA256 should be rejected OK 427ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection using non-FIPS compatible cipher DHE-PSK-AES128-CBC-SHA256 should be rejected OK 427ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection using non-FIPS compatible cipher RSA-PSK-AES128-CBC-SHA should be rejected OK 423ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection using non-FIPS compatible cipher DHE-PSK-AES128-CBC-SHA should be rejected OK 429ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection using non-FIPS compatible cipher AES128-SHA should be rejected OK 433ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection using non-FIPS compatible cipher PSK-AES128-CBC-SHA256 should be rejected OK 424ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection using non-FIPS compatible cipher PSK-AES128-CBC-SHA should be rejected OK 432ms
/ssl server/fips/clickhouse server acting as a client/dictionary OK 2m 45s
/ssl server/fips/clickhouse server acting as a client/dictionary/Connection with Protocol=TLS should be accepted OK 564ms
/ssl server/fips/clickhouse server acting as a client/dictionary/Connection with Protocol=TLSv1 should be rejected OK 523ms
/ssl server/fips/clickhouse server acting as a client/dictionary/Connection with Protocol=TLSv1.1 should be rejected OK 510ms
/ssl server/fips/clickhouse server acting as a client/dictionary/Connection with Protocol=TLSv1.2 should be accepted OK 573ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using FIPS compatible cipher ECDHE-RSA-AES128-GCM-SHA256 should work OK 557ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, TLS_AES_256_GCM_SHA384 OK 562ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, TLS_CHACHA20_POLY1305_SHA256 OK 558ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, TLS_AES_128_GCM_SHA256 OK 538ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, ECDHE-ECDSA-AES256-GCM-SHA384 OK 553ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, ECDHE-RSA-AES256-GCM-SHA384 OK 541ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, DHE-RSA-AES256-GCM-SHA384 OK 541ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, ECDHE-ECDSA-CHACHA20-POLY1305 OK 571ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, ECDHE-RSA-CHACHA20-POLY1305 OK 564ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, DHE-RSA-CHACHA20-POLY1305 OK 551ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, ECDHE-ECDSA-AES128-GCM-SHA256 OK 556ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, ECDHE-RSA-AES128-GCM-SHA256 OK 542ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, DHE-RSA-AES128-GCM-SHA256 OK 528ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, ECDHE-ECDSA-AES256-SHA384 OK 554ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, ECDHE-RSA-AES256-SHA384 OK 546ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, DHE-RSA-AES256-SHA256 OK 540ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, ECDHE-ECDSA-AES128-SHA256 OK 562ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, ECDHE-RSA-AES128-SHA256 OK 568ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, DHE-RSA-AES128-SHA256 OK 577ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, ECDHE-ECDSA-AES256-SHA OK 497ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, ECDHE-RSA-AES256-SHA OK 539ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, DHE-RSA-AES256-SHA OK 550ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, ECDHE-ECDSA-AES128-SHA OK 549ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, ECDHE-RSA-AES128-SHA OK 511ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, DHE-RSA-AES128-SHA OK 547ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, RSA-PSK-AES256-GCM-SHA384 OK 568ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, DHE-PSK-AES256-GCM-SHA384 OK 535ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, RSA-PSK-CHACHA20-POLY1305 OK 566ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, DHE-PSK-CHACHA20-POLY1305 OK 551ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, ECDHE-PSK-CHACHA20-POLY1305 OK 546ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, AES256-GCM-SHA384 OK 543ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, PSK-AES256-GCM-SHA384 OK 558ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, PSK-CHACHA20-POLY1305 OK 549ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, RSA-PSK-AES128-GCM-SHA256 OK 534ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, DHE-PSK-AES128-GCM-SHA256 OK 599ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, AES128-GCM-SHA256 OK 545ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, PSK-AES128-GCM-SHA256 OK 565ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, AES256-SHA256 OK 527ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, AES128-SHA256 OK 532ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, ECDHE-PSK-AES256-CBC-SHA384 OK 547ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, ECDHE-PSK-AES256-CBC-SHA OK 573ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, SRP-RSA-AES-256-CBC-SHA OK 576ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, SRP-AES-256-CBC-SHA OK 550ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, RSA-PSK-AES256-CBC-SHA384 OK 543ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, DHE-PSK-AES256-CBC-SHA384 OK 535ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, RSA-PSK-AES256-CBC-SHA OK 525ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, DHE-PSK-AES256-CBC-SHA OK 553ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, AES256-SHA OK 535ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, PSK-AES256-CBC-SHA384 OK 570ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, PSK-AES256-CBC-SHA OK 554ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, ECDHE-PSK-AES128-CBC-SHA256 OK 536ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, ECDHE-PSK-AES128-CBC-SHA OK 542ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, SRP-RSA-AES-128-CBC-SHA OK 542ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, SRP-AES-128-CBC-SHA OK 587ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, RSA-PSK-AES128-CBC-SHA256 OK 538ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, DHE-PSK-AES128-CBC-SHA256 OK 531ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, RSA-PSK-AES128-CBC-SHA OK 531ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, DHE-PSK-AES128-CBC-SHA OK 548ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, AES128-SHA OK 526ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, PSK-AES128-CBC-SHA256 OK 546ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES128-GCM-SHA256, PSK-AES128-CBC-SHA OK 562ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using FIPS compatible cipher ECDHE-RSA-AES256-GCM-SHA384 should work OK 559ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, TLS_AES_256_GCM_SHA384 OK 577ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, TLS_CHACHA20_POLY1305_SHA256 OK 516ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, TLS_AES_128_GCM_SHA256 OK 569ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, ECDHE-ECDSA-AES256-GCM-SHA384 OK 564ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, ECDHE-RSA-AES256-GCM-SHA384 OK 545ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, DHE-RSA-AES256-GCM-SHA384 OK 560ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, ECDHE-ECDSA-CHACHA20-POLY1305 OK 531ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, ECDHE-RSA-CHACHA20-POLY1305 OK 533ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, DHE-RSA-CHACHA20-POLY1305 OK 558ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, ECDHE-ECDSA-AES128-GCM-SHA256 OK 553ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, ECDHE-RSA-AES128-GCM-SHA256 OK 559ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, DHE-RSA-AES128-GCM-SHA256 OK 536ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, ECDHE-ECDSA-AES256-SHA384 OK 551ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, ECDHE-RSA-AES256-SHA384 OK 564ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, DHE-RSA-AES256-SHA256 OK 580ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, ECDHE-ECDSA-AES128-SHA256 OK 550ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, ECDHE-RSA-AES128-SHA256 OK 517ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, DHE-RSA-AES128-SHA256 OK 620ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, ECDHE-ECDSA-AES256-SHA OK 546ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, ECDHE-RSA-AES256-SHA OK 529ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, DHE-RSA-AES256-SHA OK 547ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, ECDHE-ECDSA-AES128-SHA OK 536ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, ECDHE-RSA-AES128-SHA OK 528ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, DHE-RSA-AES128-SHA OK 561ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, RSA-PSK-AES256-GCM-SHA384 OK 552ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, DHE-PSK-AES256-GCM-SHA384 OK 548ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, RSA-PSK-CHACHA20-POLY1305 OK 569ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, DHE-PSK-CHACHA20-POLY1305 OK 552ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, ECDHE-PSK-CHACHA20-POLY1305 OK 539ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, AES256-GCM-SHA384 OK 542ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, PSK-AES256-GCM-SHA384 OK 607ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, PSK-CHACHA20-POLY1305 OK 573ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, RSA-PSK-AES128-GCM-SHA256 OK 574ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, DHE-PSK-AES128-GCM-SHA256 OK 568ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, AES128-GCM-SHA256 OK 554ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, PSK-AES128-GCM-SHA256 OK 563ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, AES256-SHA256 OK 580ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, AES128-SHA256 OK 538ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, ECDHE-PSK-AES256-CBC-SHA384 OK 551ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, ECDHE-PSK-AES256-CBC-SHA OK 533ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, SRP-RSA-AES-256-CBC-SHA OK 553ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, SRP-AES-256-CBC-SHA OK 546ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, RSA-PSK-AES256-CBC-SHA384 OK 585ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, DHE-PSK-AES256-CBC-SHA384 OK 564ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, RSA-PSK-AES256-CBC-SHA OK 608ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, DHE-PSK-AES256-CBC-SHA OK 567ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, AES256-SHA OK 551ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, PSK-AES256-CBC-SHA384 OK 532ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, PSK-AES256-CBC-SHA OK 530ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, ECDHE-PSK-AES128-CBC-SHA256 OK 549ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, ECDHE-PSK-AES128-CBC-SHA OK 541ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, SRP-RSA-AES-128-CBC-SHA OK 552ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, SRP-AES-128-CBC-SHA OK 554ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, RSA-PSK-AES128-CBC-SHA256 OK 569ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, DHE-PSK-AES128-CBC-SHA256 OK 573ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, RSA-PSK-AES128-CBC-SHA OK 549ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, DHE-PSK-AES128-CBC-SHA OK 573ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, AES128-SHA OK 537ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, PSK-AES128-CBC-SHA256 OK 521ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-RSA-AES256-GCM-SHA384, PSK-AES128-CBC-SHA OK 543ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using FIPS compatible cipher ECDHE-ECDSA-AES128-GCM-SHA256 should work XFail 876us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, TLS_AES_256_GCM_SHA384 XFail 579us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, TLS_CHACHA20_POLY1305_SHA256 XFail 473us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, TLS_AES_128_GCM_SHA256 XFail 676us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, ECDHE-ECDSA-AES256-GCM-SHA384 XFail 433us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, ECDHE-RSA-AES256-GCM-SHA384 XFail 512us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, DHE-RSA-AES256-GCM-SHA384 XFail 536us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, ECDHE-ECDSA-CHACHA20-POLY1305 XFail 642us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, ECDHE-RSA-CHACHA20-POLY1305 XFail 475us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, DHE-RSA-CHACHA20-POLY1305 XFail 492us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, ECDHE-ECDSA-AES128-GCM-SHA256 XFail 425us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, ECDHE-RSA-AES128-GCM-SHA256 XFail 439us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, DHE-RSA-AES128-GCM-SHA256 XFail 611us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, ECDHE-ECDSA-AES256-SHA384 XFail 495us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, ECDHE-RSA-AES256-SHA384 XFail 448us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, DHE-RSA-AES256-SHA256 XFail 451us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, ECDHE-ECDSA-AES128-SHA256 XFail 478us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, ECDHE-RSA-AES128-SHA256 XFail 830us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, DHE-RSA-AES128-SHA256 XFail 460us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, ECDHE-ECDSA-AES256-SHA XFail 555us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, ECDHE-RSA-AES256-SHA XFail 610us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, DHE-RSA-AES256-SHA XFail 724us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, ECDHE-ECDSA-AES128-SHA XFail 562us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, ECDHE-RSA-AES128-SHA XFail 530us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, DHE-RSA-AES128-SHA XFail 597us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, RSA-PSK-AES256-GCM-SHA384 XFail 596us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, DHE-PSK-AES256-GCM-SHA384 XFail 784us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, RSA-PSK-CHACHA20-POLY1305 XFail 541us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, DHE-PSK-CHACHA20-POLY1305 XFail 576us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, ECDHE-PSK-CHACHA20-POLY1305 XFail 567us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, AES256-GCM-SHA384 XFail 2ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, PSK-AES256-GCM-SHA384 XFail 596us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, PSK-CHACHA20-POLY1305 XFail 561us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, RSA-PSK-AES128-GCM-SHA256 XFail 545us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, DHE-PSK-AES128-GCM-SHA256 XFail 587us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, AES128-GCM-SHA256 XFail 28ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, PSK-AES128-GCM-SHA256 XFail 634us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, AES256-SHA256 XFail 565us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, AES128-SHA256 XFail 737us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, ECDHE-PSK-AES256-CBC-SHA384 XFail 549us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, ECDHE-PSK-AES256-CBC-SHA XFail 573us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, SRP-RSA-AES-256-CBC-SHA XFail 550us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, SRP-AES-256-CBC-SHA XFail 687us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, RSA-PSK-AES256-CBC-SHA384 XFail 559us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, DHE-PSK-AES256-CBC-SHA384 XFail 545us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, RSA-PSK-AES256-CBC-SHA XFail 602us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, DHE-PSK-AES256-CBC-SHA XFail 553us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, AES256-SHA XFail 741us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, PSK-AES256-CBC-SHA384 XFail 541us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, PSK-AES256-CBC-SHA XFail 503us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, ECDHE-PSK-AES128-CBC-SHA256 XFail 540us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, ECDHE-PSK-AES128-CBC-SHA XFail 655us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, SRP-RSA-AES-128-CBC-SHA XFail 468us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, SRP-AES-128-CBC-SHA XFail 477us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, RSA-PSK-AES128-CBC-SHA256 XFail 523us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, DHE-PSK-AES128-CBC-SHA256 XFail 488us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, RSA-PSK-AES128-CBC-SHA XFail 648us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, DHE-PSK-AES128-CBC-SHA XFail 533us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, AES128-SHA XFail 495us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, PSK-AES128-CBC-SHA256 XFail 479us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES128-GCM-SHA256, PSK-AES128-CBC-SHA XFail 651us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using FIPS compatible cipher ECDHE-ECDSA-AES256-GCM-SHA384 should work XFail 486us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, TLS_AES_256_GCM_SHA384 XFail 508us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, TLS_CHACHA20_POLY1305_SHA256 XFail 495us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, TLS_AES_128_GCM_SHA256 XFail 507us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, ECDHE-ECDSA-AES256-GCM-SHA384 XFail 739us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, ECDHE-RSA-AES256-GCM-SHA384 XFail 492us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, DHE-RSA-AES256-GCM-SHA384 XFail 879us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, ECDHE-ECDSA-CHACHA20-POLY1305 XFail 411us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, ECDHE-RSA-CHACHA20-POLY1305 XFail 555us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, DHE-RSA-CHACHA20-POLY1305 XFail 414us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, ECDHE-ECDSA-AES128-GCM-SHA256 XFail 374us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, ECDHE-RSA-AES128-GCM-SHA256 XFail 375us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, DHE-RSA-AES128-GCM-SHA256 XFail 433us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, ECDHE-ECDSA-AES256-SHA384 XFail 551us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, ECDHE-RSA-AES256-SHA384 XFail 710us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, DHE-RSA-AES256-SHA256 XFail 484us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, ECDHE-ECDSA-AES128-SHA256 XFail 386us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, ECDHE-RSA-AES128-SHA256 XFail 521us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, DHE-RSA-AES128-SHA256 XFail 352us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, ECDHE-ECDSA-AES256-SHA XFail 343us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, ECDHE-RSA-AES256-SHA XFail 362us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, DHE-RSA-AES256-SHA XFail 367us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, ECDHE-ECDSA-AES128-SHA XFail 470us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, ECDHE-RSA-AES128-SHA XFail 504us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, DHE-RSA-AES128-SHA XFail 389us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, RSA-PSK-AES256-GCM-SHA384 XFail 407us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, DHE-PSK-AES256-GCM-SHA384 XFail 1ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, RSA-PSK-CHACHA20-POLY1305 XFail 482us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, DHE-PSK-CHACHA20-POLY1305 XFail 492us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, ECDHE-PSK-CHACHA20-POLY1305 XFail 1ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, AES256-GCM-SHA384 XFail 408us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, PSK-AES256-GCM-SHA384 XFail 518us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, PSK-CHACHA20-POLY1305 XFail 356us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, RSA-PSK-AES128-GCM-SHA256 XFail 340us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, DHE-PSK-AES128-GCM-SHA256 XFail 362us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, AES128-GCM-SHA256 XFail 353us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, PSK-AES128-GCM-SHA256 XFail 492us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, AES256-SHA256 XFail 340us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, AES128-SHA256 XFail 1ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, ECDHE-PSK-AES256-CBC-SHA384 XFail 400us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, ECDHE-PSK-AES256-CBC-SHA XFail 510us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, SRP-RSA-AES-256-CBC-SHA XFail 343us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, SRP-AES-256-CBC-SHA XFail 333us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, RSA-PSK-AES256-CBC-SHA384 XFail 362us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, DHE-PSK-AES256-CBC-SHA384 XFail 395us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, RSA-PSK-AES256-CBC-SHA XFail 465us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, DHE-PSK-AES256-CBC-SHA XFail 332us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, AES256-SHA XFail 1ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, PSK-AES256-CBC-SHA384 XFail 410us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, PSK-AES256-CBC-SHA XFail 337us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, ECDHE-PSK-AES128-CBC-SHA256 XFail 509us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, ECDHE-PSK-AES128-CBC-SHA XFail 337us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, SRP-RSA-AES-128-CBC-SHA XFail 335us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, SRP-AES-128-CBC-SHA XFail 350us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, RSA-PSK-AES128-CBC-SHA256 XFail 485us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, DHE-PSK-AES128-CBC-SHA256 XFail 407us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, RSA-PSK-AES128-CBC-SHA XFail 393us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, DHE-PSK-AES128-CBC-SHA XFail 352us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, AES128-SHA XFail 337us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, PSK-AES128-CBC-SHA256 XFail 515us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: ECDHE-ECDSA-AES256-GCM-SHA384, PSK-AES128-CBC-SHA XFail 345us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using FIPS compatible cipher AES128-GCM-SHA256 should work OK 598ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, TLS_AES_256_GCM_SHA384 OK 561ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, TLS_CHACHA20_POLY1305_SHA256 OK 543ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, TLS_AES_128_GCM_SHA256 OK 559ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, ECDHE-ECDSA-AES256-GCM-SHA384 OK 558ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, ECDHE-RSA-AES256-GCM-SHA384 OK 544ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, DHE-RSA-AES256-GCM-SHA384 OK 569ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, ECDHE-ECDSA-CHACHA20-POLY1305 OK 580ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, ECDHE-RSA-CHACHA20-POLY1305 OK 548ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, DHE-RSA-CHACHA20-POLY1305 OK 575ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, ECDHE-ECDSA-AES128-GCM-SHA256 OK 559ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, ECDHE-RSA-AES128-GCM-SHA256 OK 565ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, DHE-RSA-AES128-GCM-SHA256 OK 558ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, ECDHE-ECDSA-AES256-SHA384 OK 541ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, ECDHE-RSA-AES256-SHA384 OK 563ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, DHE-RSA-AES256-SHA256 OK 553ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, ECDHE-ECDSA-AES128-SHA256 OK 574ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, ECDHE-RSA-AES128-SHA256 OK 552ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, DHE-RSA-AES128-SHA256 OK 537ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, ECDHE-ECDSA-AES256-SHA OK 558ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, ECDHE-RSA-AES256-SHA OK 530ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, DHE-RSA-AES256-SHA OK 541ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, ECDHE-ECDSA-AES128-SHA OK 523ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, ECDHE-RSA-AES128-SHA OK 561ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, DHE-RSA-AES128-SHA OK 550ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, RSA-PSK-AES256-GCM-SHA384 OK 535ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, DHE-PSK-AES256-GCM-SHA384 OK 522ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, RSA-PSK-CHACHA20-POLY1305 OK 530ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, DHE-PSK-CHACHA20-POLY1305 OK 533ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, ECDHE-PSK-CHACHA20-POLY1305 OK 536ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, AES256-GCM-SHA384 OK 544ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, PSK-AES256-GCM-SHA384 OK 556ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, PSK-CHACHA20-POLY1305 OK 541ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, RSA-PSK-AES128-GCM-SHA256 OK 538ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, DHE-PSK-AES128-GCM-SHA256 OK 534ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, AES128-GCM-SHA256 OK 545ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, PSK-AES128-GCM-SHA256 OK 512ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, AES256-SHA256 OK 517ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, AES128-SHA256 OK 580ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, ECDHE-PSK-AES256-CBC-SHA384 OK 565ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, ECDHE-PSK-AES256-CBC-SHA OK 542ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, SRP-RSA-AES-256-CBC-SHA OK 546ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, SRP-AES-256-CBC-SHA OK 582ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, RSA-PSK-AES256-CBC-SHA384 OK 547ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, DHE-PSK-AES256-CBC-SHA384 OK 523ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, RSA-PSK-AES256-CBC-SHA OK 526ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, DHE-PSK-AES256-CBC-SHA OK 524ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, AES256-SHA OK 556ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, PSK-AES256-CBC-SHA384 OK 528ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, PSK-AES256-CBC-SHA OK 529ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, ECDHE-PSK-AES128-CBC-SHA256 OK 577ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, ECDHE-PSK-AES128-CBC-SHA OK 572ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, SRP-RSA-AES-128-CBC-SHA OK 577ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, SRP-AES-128-CBC-SHA OK 556ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, RSA-PSK-AES128-CBC-SHA256 OK 552ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, DHE-PSK-AES128-CBC-SHA256 OK 527ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, RSA-PSK-AES128-CBC-SHA OK 560ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, DHE-PSK-AES128-CBC-SHA OK 556ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, AES128-SHA OK 570ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, PSK-AES128-CBC-SHA256 OK 587ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES128-GCM-SHA256, PSK-AES128-CBC-SHA OK 582ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using FIPS compatible cipher AES256-GCM-SHA384 should work OK 559ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, TLS_AES_256_GCM_SHA384 OK 583ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, TLS_CHACHA20_POLY1305_SHA256 OK 537ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, TLS_AES_128_GCM_SHA256 OK 548ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, ECDHE-ECDSA-AES256-GCM-SHA384 OK 559ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, ECDHE-RSA-AES256-GCM-SHA384 OK 543ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, DHE-RSA-AES256-GCM-SHA384 OK 549ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, ECDHE-ECDSA-CHACHA20-POLY1305 OK 564ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, ECDHE-RSA-CHACHA20-POLY1305 OK 535ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, DHE-RSA-CHACHA20-POLY1305 OK 539ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, ECDHE-ECDSA-AES128-GCM-SHA256 OK 566ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, ECDHE-RSA-AES128-GCM-SHA256 OK 560ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, DHE-RSA-AES128-GCM-SHA256 OK 542ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, ECDHE-ECDSA-AES256-SHA384 OK 544ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, ECDHE-RSA-AES256-SHA384 OK 523ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, DHE-RSA-AES256-SHA256 OK 520ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, ECDHE-ECDSA-AES128-SHA256 OK 560ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, ECDHE-RSA-AES128-SHA256 OK 562ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, DHE-RSA-AES128-SHA256 OK 561ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, ECDHE-ECDSA-AES256-SHA OK 555ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, ECDHE-RSA-AES256-SHA OK 538ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, DHE-RSA-AES256-SHA OK 546ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, ECDHE-ECDSA-AES128-SHA OK 539ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, ECDHE-RSA-AES128-SHA OK 711ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, DHE-RSA-AES128-SHA OK 551ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, RSA-PSK-AES256-GCM-SHA384 OK 549ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, DHE-PSK-AES256-GCM-SHA384 OK 596ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, RSA-PSK-CHACHA20-POLY1305 OK 575ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, DHE-PSK-CHACHA20-POLY1305 OK 553ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, ECDHE-PSK-CHACHA20-POLY1305 OK 607ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, AES256-GCM-SHA384 OK 544ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, PSK-AES256-GCM-SHA384 OK 521ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, PSK-CHACHA20-POLY1305 OK 562ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, RSA-PSK-AES128-GCM-SHA256 OK 559ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, DHE-PSK-AES128-GCM-SHA256 OK 572ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, AES128-GCM-SHA256 OK 567ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, PSK-AES128-GCM-SHA256 OK 547ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, AES256-SHA256 OK 570ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, AES128-SHA256 OK 563ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, ECDHE-PSK-AES256-CBC-SHA384 OK 535ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, ECDHE-PSK-AES256-CBC-SHA OK 564ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, SRP-RSA-AES-256-CBC-SHA OK 573ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, SRP-AES-256-CBC-SHA OK 577ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, RSA-PSK-AES256-CBC-SHA384 OK 547ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, DHE-PSK-AES256-CBC-SHA384 OK 574ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, RSA-PSK-AES256-CBC-SHA OK 549ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, DHE-PSK-AES256-CBC-SHA OK 557ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, AES256-SHA OK 577ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, PSK-AES256-CBC-SHA384 OK 558ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, PSK-AES256-CBC-SHA OK 576ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, ECDHE-PSK-AES128-CBC-SHA256 OK 596ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, ECDHE-PSK-AES128-CBC-SHA OK 581ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, SRP-RSA-AES-128-CBC-SHA OK 554ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, SRP-AES-128-CBC-SHA OK 562ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, RSA-PSK-AES128-CBC-SHA256 OK 598ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, DHE-PSK-AES128-CBC-SHA256 OK 578ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, RSA-PSK-AES128-CBC-SHA OK 535ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, DHE-PSK-AES128-CBC-SHA OK 555ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, AES128-SHA OK 561ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, PSK-AES128-CBC-SHA256 OK 570ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection with at least one FIPS compatible cipher should work, ciphers: AES256-GCM-SHA384, PSK-AES128-CBC-SHA OK 565ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using non-FIPS compatible cipher TLS_AES_256_GCM_SHA384 should be rejected XFail 912us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using non-FIPS compatible cipher TLS_CHACHA20_POLY1305_SHA256 should be rejected XFail 428us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using non-FIPS compatible cipher TLS_AES_128_GCM_SHA256 should be rejected XFail 584us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using non-FIPS compatible cipher DHE-RSA-AES256-GCM-SHA384 should be rejected OK 532ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using non-FIPS compatible cipher ECDHE-ECDSA-CHACHA20-POLY1305 should be rejected OK 524ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using non-FIPS compatible cipher ECDHE-RSA-CHACHA20-POLY1305 should be rejected OK 527ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using non-FIPS compatible cipher DHE-RSA-CHACHA20-POLY1305 should be rejected OK 521ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using non-FIPS compatible cipher DHE-RSA-AES128-GCM-SHA256 should be rejected OK 534ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using non-FIPS compatible cipher ECDHE-ECDSA-AES256-SHA384 should be rejected OK 533ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using non-FIPS compatible cipher ECDHE-RSA-AES256-SHA384 should be rejected OK 546ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using non-FIPS compatible cipher DHE-RSA-AES256-SHA256 should be rejected OK 534ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using non-FIPS compatible cipher ECDHE-ECDSA-AES128-SHA256 should be rejected OK 507ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using non-FIPS compatible cipher ECDHE-RSA-AES128-SHA256 should be rejected OK 536ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using non-FIPS compatible cipher DHE-RSA-AES128-SHA256 should be rejected OK 545ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using non-FIPS compatible cipher ECDHE-ECDSA-AES256-SHA should be rejected OK 532ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using non-FIPS compatible cipher ECDHE-RSA-AES256-SHA should be rejected OK 552ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using non-FIPS compatible cipher DHE-RSA-AES256-SHA should be rejected OK 558ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using non-FIPS compatible cipher ECDHE-ECDSA-AES128-SHA should be rejected OK 547ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using non-FIPS compatible cipher ECDHE-RSA-AES128-SHA should be rejected OK 571ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using non-FIPS compatible cipher DHE-RSA-AES128-SHA should be rejected OK 550ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using non-FIPS compatible cipher RSA-PSK-AES256-GCM-SHA384 should be rejected OK 566ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using non-FIPS compatible cipher DHE-PSK-AES256-GCM-SHA384 should be rejected OK 538ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using non-FIPS compatible cipher RSA-PSK-CHACHA20-POLY1305 should be rejected OK 562ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using non-FIPS compatible cipher DHE-PSK-CHACHA20-POLY1305 should be rejected OK 560ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using non-FIPS compatible cipher ECDHE-PSK-CHACHA20-POLY1305 should be rejected OK 557ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using non-FIPS compatible cipher PSK-AES256-GCM-SHA384 should be rejected OK 541ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using non-FIPS compatible cipher PSK-CHACHA20-POLY1305 should be rejected OK 578ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using non-FIPS compatible cipher RSA-PSK-AES128-GCM-SHA256 should be rejected OK 577ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using non-FIPS compatible cipher DHE-PSK-AES128-GCM-SHA256 should be rejected OK 575ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using non-FIPS compatible cipher PSK-AES128-GCM-SHA256 should be rejected OK 547ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using non-FIPS compatible cipher AES256-SHA256 should be rejected OK 526ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using non-FIPS compatible cipher AES128-SHA256 should be rejected OK 550ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using non-FIPS compatible cipher ECDHE-PSK-AES256-CBC-SHA384 should be rejected OK 551ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using non-FIPS compatible cipher ECDHE-PSK-AES256-CBC-SHA should be rejected OK 563ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using non-FIPS compatible cipher SRP-RSA-AES-256-CBC-SHA should be rejected OK 550ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using non-FIPS compatible cipher SRP-AES-256-CBC-SHA should be rejected OK 578ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using non-FIPS compatible cipher RSA-PSK-AES256-CBC-SHA384 should be rejected OK 554ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using non-FIPS compatible cipher DHE-PSK-AES256-CBC-SHA384 should be rejected OK 587ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using non-FIPS compatible cipher RSA-PSK-AES256-CBC-SHA should be rejected OK 545ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using non-FIPS compatible cipher DHE-PSK-AES256-CBC-SHA should be rejected OK 546ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using non-FIPS compatible cipher AES256-SHA should be rejected OK 558ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using non-FIPS compatible cipher PSK-AES256-CBC-SHA384 should be rejected OK 556ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using non-FIPS compatible cipher PSK-AES256-CBC-SHA should be rejected OK 550ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using non-FIPS compatible cipher ECDHE-PSK-AES128-CBC-SHA256 should be rejected OK 577ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using non-FIPS compatible cipher ECDHE-PSK-AES128-CBC-SHA should be rejected OK 521ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using non-FIPS compatible cipher SRP-RSA-AES-128-CBC-SHA should be rejected OK 542ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using non-FIPS compatible cipher SRP-AES-128-CBC-SHA should be rejected OK 534ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using non-FIPS compatible cipher RSA-PSK-AES128-CBC-SHA256 should be rejected OK 549ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using non-FIPS compatible cipher DHE-PSK-AES128-CBC-SHA256 should be rejected OK 533ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using non-FIPS compatible cipher RSA-PSK-AES128-CBC-SHA should be rejected OK 537ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using non-FIPS compatible cipher DHE-PSK-AES128-CBC-SHA should be rejected OK 520ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using non-FIPS compatible cipher AES128-SHA should be rejected OK 536ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using non-FIPS compatible cipher PSK-AES128-CBC-SHA256 should be rejected OK 526ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using non-FIPS compatible cipher PSK-AES128-CBC-SHA should be rejected OK 541ms
/ssl server/zookeeper OK 9m 42s
/ssl server/zookeeper/secure connection OK 28s 958ms
/ssl server/zookeeper/secure connection to invalid zookeeper port OK 55s 275ms
/ssl server/zookeeper/secure connection with empty truststore OK 56s 190ms
/ssl server/zookeeper/secure connection with unsigned client certificate OK 53s 21ms
/ssl server/zookeeper/secure connection without client certificate OK 54s 873ms
/ssl server/zookeeper/fips OK 5m 2s
/ssl server/zookeeper/fips/ECDHE-RSA-AES128-GCM-SHA256 OK 28s 969ms
/ssl server/zookeeper/fips/ECDHE-RSA-AES128-GCM-SHA256/fips connection OK 28s 968ms
/ssl server/zookeeper/fips/ECDHE-RSA-AES256-GCM-SHA384 OK 25s 903ms
/ssl server/zookeeper/fips/ECDHE-RSA-AES256-GCM-SHA384/fips connection OK 25s 902ms
/ssl server/zookeeper/fips/ECDHE-ECDSA-AES128-GCM-SHA256 OK 52s 438ms
/ssl server/zookeeper/fips/ECDHE-ECDSA-AES128-GCM-SHA256/fips connection XFail 52s 437ms
/ssl server/zookeeper/fips/ECDHE-ECDSA-AES256-GCM-SHA384 OK 55s 501ms
/ssl server/zookeeper/fips/ECDHE-ECDSA-AES256-GCM-SHA384/fips connection XFail 55s 500ms
/ssl server/zookeeper/fips/AES128-GCM-SHA256 OK 55s 506ms
/ssl server/zookeeper/fips/AES128-GCM-SHA256/fips connection XFail 55s 505ms
/ssl server/zookeeper/fips/AES256-GCM-SHA384 OK 55s 519ms
/ssl server/zookeeper/fips/AES256-GCM-SHA384/fips connection XFail 55s 518ms
/ssl server/zookeeper/fips/any compatible OK 28s 987ms
/ssl server/zookeeper/fips/any compatible/fips connection OK 28s 986ms
/ssl server/zookeeper fips OK 9m 25s
/ssl server/zookeeper fips/secure connection OK 24s 890ms
/ssl server/zookeeper fips/secure connection to invalid zookeeper port OK 52s 243ms
/ssl server/zookeeper fips/secure connection with empty truststore OK 58s 781ms
/ssl server/zookeeper fips/secure connection with unsigned client certificate OK 52s 635ms
/ssl server/zookeeper fips/secure connection without client certificate OK 52s 576ms
/ssl server/zookeeper fips/fips OK 4m 47s
/ssl server/zookeeper fips/fips/ECDHE-RSA-AES128-GCM-SHA256 OK 25s 903ms
/ssl server/zookeeper fips/fips/ECDHE-RSA-AES128-GCM-SHA256/fips connection OK 25s 902ms
/ssl server/zookeeper fips/fips/ECDHE-RSA-AES256-GCM-SHA384 OK 25s 897ms
/ssl server/zookeeper fips/fips/ECDHE-RSA-AES256-GCM-SHA384/fips connection OK 25s 897ms
/ssl server/zookeeper fips/fips/ECDHE-ECDSA-AES128-GCM-SHA256 OK 52s 354ms
/ssl server/zookeeper fips/fips/ECDHE-ECDSA-AES128-GCM-SHA256/fips connection XFail 52s 353ms
/ssl server/zookeeper fips/fips/ECDHE-ECDSA-AES256-GCM-SHA384 OK 52s 443ms
/ssl server/zookeeper fips/fips/ECDHE-ECDSA-AES256-GCM-SHA384/fips connection XFail 52s 442ms
/ssl server/zookeeper fips/fips/AES128-GCM-SHA256 OK 52s 470ms
/ssl server/zookeeper fips/fips/AES128-GCM-SHA256/fips connection XFail 52s 470ms
/ssl server/zookeeper fips/fips/AES256-GCM-SHA384 OK 52s 392ms
/ssl server/zookeeper fips/fips/AES256-GCM-SHA384/fips connection XFail 52s 391ms
/ssl server/zookeeper fips/fips/any compatible OK 25s 931ms
/ssl server/zookeeper fips/fips/any compatible/fips connection OK 25s 930ms
/ssl server/ca chain OK 25m 26s
/ssl server/ca chain/use root ca OK 3m 23s
/ssl server/ca chain/use root ca/with caconfig OK 1m 38s
/ssl server/ca chain/use root ca/with caconfig/all certificates in chain OK 50s 846ms
/ssl server/ca chain/use root ca/with caconfig/invalid first CA in chain on one node OK 47s 946ms
/ssl server/ca chain/use root ca/without caconfig OK 1m 45s
/ssl server/ca chain/use root ca/without caconfig/all trusted OK 53s 369ms
/ssl server/ca chain/use root ca/without caconfig/missing first trusted CA on one node OK 51s 778ms
/ssl server/ca chain/use first intermediate ca OK 6m 3s
/ssl server/ca chain/use first intermediate ca/with caconfig OK 2m 26s
/ssl server/ca chain/use first intermediate ca/with caconfig/all certificates in chain OK 51s 36ms
/ssl server/ca chain/use first intermediate ca/with caconfig/missing first CA in chain on one node OK 47s 317ms
/ssl server/ca chain/use first intermediate ca/with caconfig/missing last CA in chain on one node OK 48s 66ms
/ssl server/ca chain/use first intermediate ca/with caconfig OK 51s 277ms
/ssl server/ca chain/use first intermediate ca/without caconfig OK 2m 46s
/ssl server/ca chain/use first intermediate ca/without caconfig/without caconfig OK 56s 317ms
/ssl server/ca chain/use first intermediate ca/without caconfig/missing first trusted CA on one node OK 53s 248ms
/ssl server/ca chain/use first intermediate ca/without caconfig/missing last trusted CA on one node OK 56s 712ms
/ssl server/ca chain/use second intermediate ca OK 15m 57s
/ssl server/ca chain/use second intermediate ca/server certificate with chain OK 6m 48s
/ssl server/ca chain/use second intermediate ca/server certificate with chain/with caconfig OK 3m 14s
/ssl server/ca chain/use second intermediate ca/server certificate with chain/with caconfig/all certificates present OK 49s 202ms
/ssl server/ca chain/use second intermediate ca/server certificate with chain/with caconfig/missing first CA in chain on one node OK 48s 319ms
/ssl server/ca chain/use second intermediate ca/server certificate with chain/with caconfig/missing last CA in chain on one node OK 50s 44ms
/ssl server/ca chain/use second intermediate ca/server certificate with chain/with caconfig/missing all CA in chain on one node OK 47s 369ms
/ssl server/ca chain/use second intermediate ca/server certificate with chain/without caconfig OK 3m 33s
/ssl server/ca chain/use second intermediate ca/server certificate with chain/without caconfig/all certificates present OK 53s 839ms
/ssl server/ca chain/use second intermediate ca/server certificate with chain/without caconfig/missing first CA in chain on one node OK 51s 230ms
/ssl server/ca chain/use second intermediate ca/server certificate with chain/without caconfig/missing last CA in chain on one node OK 55s 540ms
/ssl server/ca chain/use second intermediate ca/server certificate with chain/without caconfig/missing all CA in chain on one node OK 52s 476ms
/ssl server/ca chain/use second intermediate ca/server certificate without chain OK 9m 9s
/ssl server/ca chain/use second intermediate ca/server certificate without chain/with caconfig OK 4m 4s
/ssl server/ca chain/use second intermediate ca/server certificate without chain/with caconfig/all certificates present OK 49s 280ms
/ssl server/ca chain/use second intermediate ca/server certificate without chain/with caconfig/missing first CA in chain on one node OK 49s 494ms
/ssl server/ca chain/use second intermediate ca/server certificate without chain/with caconfig/missing middle CA in chain on one node OK 48s 187ms
/ssl server/ca chain/use second intermediate ca/server certificate without chain/with caconfig/missing last CA in chain on one node OK 50s 101ms
/ssl server/ca chain/use second intermediate ca/server certificate without chain/with caconfig/missing some CA in chain on all nodes OK 47s 361ms
/ssl server/ca chain/use second intermediate ca/server certificate without chain/without caconfig OK 5m 4s
/ssl server/ca chain/use second intermediate ca/server certificate without chain/without caconfig/all certificates present OK 1m 4s
/ssl server/ca chain/use second intermediate ca/server certificate without chain/without caconfig/missing first trusted CA on one node OK 59s 809ms
/ssl server/ca chain/use second intermediate ca/server certificate without chain/without caconfig/missing middle trusted CA on one node OK 1m 2s
/ssl server/ca chain/use second intermediate ca/server certificate without chain/without caconfig/missing last trusted CA on one node OK 1m 1s
/ssl server/ca chain/use second intermediate ca/server certificate without chain/without caconfig/missing trusted CA on all nodes OK 56s 331ms

Generated by TestFlows Open-Source Test Framework v2.0.231215.1221232