Ssl Server Test Run Report

DateMar 01, 2024 21:23
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/19a57e6f4a8ca8dd7737ac12f3ba472b37ac166c/package_release/clickhouse-common-static_23.3.19.33.altinitystable_amd64.deb
version23.3.19.33.altinitystable
user.nameEnmk
repositoryhttps://github.com/Altinity/clickhouse-regression
commit.hash6da94b78dc53cb8965ab56c04a89ebf54ed04cbc
job.id8115174679
job.urlhttps://github.com/Altinity/ClickHouse/actions/runs/8115174679
archx86_64
stressFalse
allow_vfsFalse
localTrue
clickhouse_versionNone
clickhouse_binary_pathhttps://s3.amazonaws.com/altinity-build-artifacts/23.3/19a57e6f4a8ca8dd7737ac12f3ba472b37ac166c/package_release/clickhouse-common-static_23.3.19.33.altinitystable_amd64.deb
collect_service_logsTrue
force_fipsFalse

Summary

80.7%OK
19.3%Known

Statistics

Units OK Fail XFail
Modules
1
1
Suites
9
8
1
Features
54
54
Scenarios
70
68
2
Checks
1952
1558
394
Steps
43690
43372
318

Known Fails

Test NameResultMessage
/ssl server/ssl context/enable ssl no server key passphrase dynamicallyXFail 17s 754ms
https://github.com/ClickHouse/ClickHouse/issues/35950
ConfigReloader: Error updating configuration
/ssl server/ssl context/enable ssl with server key passphrase dynamicallyXFail 17s 812ms
https://github.com/ClickHouse/ClickHouse/issues/35950
ConfigReloader: Error updating configuration
/ssl server/verification modes/fail casesXFail 680us
None
not implemented.
/ssl server/url table function/https server url function checks/just disabling TLSv1.1 suite connection should workXFail 11s 116ms
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.33.altinitystable (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.33.altinitystable (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 12s 226ms
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.33.altinitystable (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.33.altinitystable (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 170ms
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.33.altinitystable (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.33.altinitystable (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 12s 430ms
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_cf227aa4_d814_11ee_9ef9_db7b5e29d3d1 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_cf227aa4_d814_11ee_9ef9_db7b5e29d3d1 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 355ms
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_ec0c20f2_d814_11ee_9ef9_db7b5e29d3d1 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_ec0c20f2_d814_11ee_9ef9_db7b5e29d3d1 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 291ms
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_f380f739_d814_11ee_9ef9_db7b5e29d3d1 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_f380f739_d814_11ee_9ef9_db7b5e29d3d1 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/clickhouse server acting as a client/url table function/connection using FIPS compatible cipher ECDHE-ECDSA-AES128-GCM-SHA256 should workXFail 845us
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 754us
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 525us
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 644us
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 586us
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 650us
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 615us
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 475us
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 453us
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 505us
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 607us
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 423us
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 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-AES128-GCM-SHA256, ECDHE-ECDSA-AES256-SHA384XFail 491us
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 492us
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 635us
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 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-AES128-GCM-SHA256, ECDHE-RSA-AES128-SHA256XFail 413us
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 444us
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 590us
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 480us
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 442us
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 444us
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 532us
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 628us
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 486us
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 555us
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 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, DHE-PSK-CHACHA20-POLY1305XFail 444us
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 626us
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 533us
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 623us
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 515us
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 648us
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 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-AES128-GCM-SHA256, AES128-GCM-SHA256XFail 541us
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 531us
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 542us
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 635us
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 484us
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 570us
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 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, SRP-AES-256-CBC-SHAXFail 505us
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 612us
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 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-AES128-GCM-SHA256, RSA-PSK-AES256-CBC-SHAXFail 477us
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 433us
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 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, PSK-AES256-CBC-SHA384XFail 646us
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 657us
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 559us
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 590us
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 804us
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 578us
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 541us
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 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, RSA-PSK-AES128-CBC-SHAXFail 551us
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 821us
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 592us
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 541us
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 533us
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 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, TLS_AES_256_GCM_SHA384XFail 573us
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 569us
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 613us
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 695us
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 782us
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 555us
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 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-AES256-GCM-SHA384, ECDHE-RSA-CHACHA20-POLY1305XFail 582us
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 592us
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 864us
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 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-AES256-GCM-SHA384, DHE-RSA-AES128-GCM-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-AES256-GCM-SHA384, ECDHE-ECDSA-AES256-SHA384XFail 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-AES256-GCM-SHA384, ECDHE-RSA-AES256-SHA384XFail 593us
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 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-AES256-GCM-SHA384, ECDHE-ECDSA-AES128-SHA256XFail 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-RSA-AES128-SHA256XFail 373us
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 455us
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 566us
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 399us
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 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, ECDHE-ECDSA-AES128-SHAXFail 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-AES256-GCM-SHA384, ECDHE-RSA-AES128-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-AES256-GCM-SHA384, DHE-RSA-AES128-SHAXFail 589us
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 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, DHE-PSK-AES256-GCM-SHA384XFail 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, RSA-PSK-CHACHA20-POLY1305XFail 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-AES256-GCM-SHA384, DHE-PSK-CHACHA20-POLY1305XFail 499us
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 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, PSK-AES256-GCM-SHA384XFail 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-AES256-GCM-SHA384, 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-AES256-GCM-SHA384, RSA-PSK-AES128-GCM-SHA256XFail 590us
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 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-AES256-GCM-SHA384, AES128-GCM-SHA256XFail 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, PSK-AES128-GCM-SHA256XFail 427us
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 382us
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 571us
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 443us
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 453us
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 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, SRP-AES-256-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-AES256-GCM-SHA384, RSA-PSK-AES256-CBC-SHA384XFail 605us
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 443us
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 397us
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 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-AES256-GCM-SHA384, AES256-SHAXFail 541us
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 410us
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 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-AES256-GCM-SHA384, ECDHE-PSK-AES128-CBC-SHA256XFail 442us
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 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-AES256-GCM-SHA384, SRP-RSA-AES-128-CBC-SHAXFail 528us
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 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-AES256-GCM-SHA384, RSA-PSK-AES128-CBC-SHA256XFail 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-AES256-GCM-SHA384, DHE-PSK-AES128-CBC-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-AES256-GCM-SHA384, RSA-PSK-AES128-CBC-SHAXFail 625us
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 411us
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 390us
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 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, PSK-AES128-CBC-SHAXFail 365us
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 442us
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 395us
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 664us
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 586us
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 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, TLS_AES_128_GCM_SHA256XFail 686us
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 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-AES128-GCM-SHA256, ECDHE-RSA-AES256-GCM-SHA384XFail 409us
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 444us
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 670us
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 376us
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 384us
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 381us
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 429us
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 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, ECDHE-ECDSA-AES256-SHA384XFail 358us
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 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-AES128-GCM-SHA256, DHE-RSA-AES256-SHA256XFail 430us
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 379us
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 589us
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 351us
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 430us
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 365us
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 513us
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 370us
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 346us
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 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-AES128-GCM-SHA256, RSA-PSK-AES256-GCM-SHA384XFail 376us
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 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, RSA-PSK-CHACHA20-POLY1305XFail 426us
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 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-AES128-GCM-SHA256, ECDHE-PSK-CHACHA20-POLY1305XFail 361us
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 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-AES128-GCM-SHA256, PSK-AES256-GCM-SHA384XFail 471us
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 531us
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 388us
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 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-AES128-GCM-SHA256, AES128-GCM-SHA256XFail 487us
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 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-AES128-GCM-SHA256, AES256-SHA256XFail 487us
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 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-PSK-AES256-CBC-SHA384XFail 409us
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 537us
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 363us
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 351us
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 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-AES128-GCM-SHA256, DHE-PSK-AES256-CBC-SHA384XFail 491us
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 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-AES128-GCM-SHA256, DHE-PSK-AES256-CBC-SHAXFail 345us
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 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-AES128-GCM-SHA256, PSK-AES256-CBC-SHA384XFail 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-AES128-GCM-SHA256, PSK-AES256-CBC-SHAXFail 481us
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 376us
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 360us
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 347us
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 404us
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 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-AES128-CBC-SHA256XFail 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-AES128-GCM-SHA256, RSA-PSK-AES128-CBC-SHAXFail 429us
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 351us
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 528us
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 480us
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 366us
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 355us
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 351us
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 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, TLS_AES_128_GCM_SHA256XFail 404us
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 370us
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 345us
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 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-ECDSA-CHACHA20-POLY1305XFail 633us
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 422us
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 440us
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 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-RSA-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-AES256-GCM-SHA384, DHE-RSA-AES128-GCM-SHA256XFail 378us
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 575us
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 632us
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 423us
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 593us
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 384us
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 371us
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 436us
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 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-AES256-GCM-SHA384, DHE-RSA-AES256-SHAXFail 517us
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 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, ECDHE-RSA-AES128-SHAXFail 351us
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 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, RSA-PSK-AES256-GCM-SHA384XFail 939us
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 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, RSA-PSK-CHACHA20-POLY1305XFail 359us
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 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-PSK-CHACHA20-POLY1305XFail 480us
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 630us
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 364us
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 373us
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 388us
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 368us
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 517us
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 430us
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 480us
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 430us
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 537us
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 358us
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 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, SRP-AES-256-CBC-SHAXFail 363us
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 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, DHE-PSK-AES256-CBC-SHA384XFail 483us
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 354us
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 368us
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 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, PSK-AES256-CBC-SHA384XFail 359us
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 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-AES256-GCM-SHA384, ECDHE-PSK-AES128-CBC-SHA256XFail 345us
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 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, SRP-RSA-AES-128-CBC-SHAXFail 370us
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 528us
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 383us
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 370us
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 347us
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 347us
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 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-AES256-GCM-SHA384, PSK-AES128-CBC-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, PSK-AES128-CBC-SHAXFail 727us
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 1ms
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 749us
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 400us
not supported by TLSv1.2
None
/ssl server/zookeeper/fips/ECDHE-ECDSA-AES128-GCM-SHA256/fips connectionXFail 52s 453ms
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.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.33.altinitystable (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.33.altinitystable (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.33.altinitystable (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/ECDHE-ECDSA-AES256-GCM-SHA384/fips connectionXFail 55s 533ms
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.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.33.altinitystable (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.33.altinitystable (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.33.altinitystable (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/AES128-GCM-SHA256/fips connectionXFail 55s 513ms
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.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.33.altinitystable (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.33.altinitystable (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.33.altinitystable (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/AES256-GCM-SHA384/fips connectionXFail 55s 665ms
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.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.33.altinitystable (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.33.altinitystable (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.33.altinitystable (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-AES128-GCM-SHA256/fips connectionXFail 52s 416ms
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.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.33.altinitystable (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.33.altinitystable (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.33.altinitystable (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-AES256-GCM-SHA384/fips connectionXFail 52s 446ms
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.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.33.altinitystable (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.33.altinitystable (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.33.altinitystable (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/AES128-GCM-SHA256/fips connectionXFail 52s 480ms
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.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.33.altinitystable (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.33.altinitystable (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.33.altinitystable (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/AES256-GCM-SHA384/fips connectionXFail 52s 553ms
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.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.33.altinitystable (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.33.altinitystable (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.33.altinitystable (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\|

Results

Test Name Result Duration
/ssl server OK 1h 24m
/ssl server/check certificate OK 24s 784ms
/ssl server/check certificate/system certificates OK 88ms
/ssl server/check certificate/show certificate OK 63ms
/ssl server/sanity OK 51ms
/ssl server/sanity/check non secure connection OK 51ms
/ssl server/ssl context OK 1m 26s
/ssl server/ssl context/enable ssl no server key passphrase OK 25s 786ms
/ssl server/ssl context/enable ssl no server key passphrase dynamically XFail 17s 754ms
/ssl server/ssl context/enable ssl with server key passphrase OK 25s 498ms
/ssl server/ssl context/enable ssl with server key passphrase dynamically XFail 17s 812ms
/ssl server/certificate authentication OK 52s 180ms
/ssl server/certificate authentication/rbac user no hostname OK 895ms
/ssl server/certificate authentication/rbac user hostname OK 871ms
/ssl server/certificate authentication/config user no hostname OK 842ms
/ssl server/certificate authentication/config user hostname OK 548ms
/ssl server/verification modes OK 1m 10s
/ssl server/verification modes/none OK 11s 171ms
/ssl server/verification modes/none/check connections OK 151ms
/ssl server/verification modes/once OK 11s 328ms
/ssl server/verification modes/once/check connections OK 161ms
/ssl server/verification modes/once/check connections with client certificate and key specified OK 169ms
/ssl server/verification modes/relaxed OK 11s 339ms
/ssl server/verification modes/relaxed/check connections OK 154ms
/ssl server/verification modes/relaxed/check connections with client certificate and key specified OK 168ms
/ssl server/verification modes/strict OK 11s 162ms
/ssl server/verification modes/strict/check connections with client certificate and key specified OK 167ms
/ssl server/verification modes/fail cases XFail 680us
/ssl server/url table function OK 13m 26s
/ssl server/url table function/https server url function checks OK 12m 57s
/ssl server/url table function/https server url function checks/Connection with no protocols should be rejected OK 11s 76ms
/ssl server/url table function/https server url function checks/TLSv1.2 suite connection should work OK 11s 64ms
/ssl server/url table function/https server url function checks/TLSv1 suite connection should be rejected OK 11s 113ms
/ssl server/url table function/https server url function checks/TLSv1.1 suite connection should be rejected OK 11s 82ms
/ssl server/url table function/https server url function checks/TLSv1.3 suite connection should be rejected OK 11s 131ms
/ssl server/url table function/https server url function checks/just disabling TLSv1 suite connection should work OK 11s 111ms
/ssl server/url table function/https server url function checks/just disabling TLSv1.1 suite connection should work XFail 11s 116ms
/ssl server/url table function/https server url function checks/just disabling TLSv1.3 suite connection should work OK 12s 104ms
/ssl server/url table function/https server url function checks/connection using FIPS compatible cipher ECDHE-RSA-AES128-GCM-SHA256 should work OK 12s 94ms
/ssl server/url table function/https server url function checks/connection using FIPS compatible cipher ECDHE-RSA-AES256-GCM-SHA384 should work OK 12s 122ms
/ssl server/url table function/https server url function checks/connection using FIPS compatible cipher ECDHE-ECDSA-AES128-GCM-SHA256 should work XFail 12s 226ms
/ssl server/url table function/https server url function checks/connection using FIPS compatible cipher ECDHE-ECDSA-AES256-GCM-SHA384 should work XFail 11s 170ms
/ssl server/url table function/https server url function checks/connection using FIPS compatible cipher AES128-GCM-SHA256 should work OK 11s 213ms
/ssl server/url table function/https server url function checks/connection using FIPS compatible cipher AES256-GCM-SHA384 should work OK 11s 138ms
/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 11s 143ms
/ssl server/url table function/https server url function checks/connection using non-FIPS compatible cipher TLS_CHACHA20_POLY1305_SHA256 should be rejected OK 11s 111ms
/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 99ms
/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 11s 219ms
/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 161ms
/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 149ms
/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 191ms
/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 134ms
/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 147ms
/ssl server/url table function/https server url function checks/connection using non-FIPS compatible cipher ECDHE-RSA-AES256-SHA384 should be rejected OK 12s 178ms
/ssl server/url table function/https server url function checks/connection using non-FIPS compatible cipher DHE-RSA-AES256-SHA256 should be rejected OK 11s 174ms
/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 170ms
/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 260ms
/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 156ms
/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 209ms
/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 148ms
/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 130ms
/ssl server/url table function/https server url function checks/connection using non-FIPS compatible cipher ECDHE-ECDSA-AES128-SHA should be rejected OK 12s 245ms
/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 203ms
/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 154ms
/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 197ms
/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 240ms
/ssl server/url table function/https server url function checks/connection using non-FIPS compatible cipher RSA-PSK-CHACHA20-POLY1305 should be rejected OK 12s 203ms
/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 268ms
/ssl server/url table function/https server url function checks/connection using non-FIPS compatible cipher ECDHE-PSK-CHACHA20-POLY1305 should be rejected OK 11s 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 291ms
/ssl server/url table function/https server url function checks/connection using non-FIPS compatible cipher PSK-CHACHA20-POLY1305 should be rejected OK 11s 176ms
/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 12s 237ms
/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 179ms
/ssl server/url table function/https server url function checks/connection using non-FIPS compatible cipher PSK-AES128-GCM-SHA256 should be rejected OK 11s 174ms
/ssl server/url table function/https server url function checks/connection using non-FIPS compatible cipher AES256-SHA256 should be rejected OK 12s 152ms
/ssl server/url table function/https server url function checks/connection using non-FIPS compatible cipher AES128-SHA256 should be rejected OK 11s 204ms
/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 11s 191ms
/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 12s 164ms
/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 12s 190ms
/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 12s 208ms
/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 11s 200ms
/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 211ms
/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 254ms
/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 11s 195ms
/ssl server/url table function/https server url function checks/connection using non-FIPS compatible cipher AES256-SHA should be rejected OK 11s 293ms
/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 150ms
/ssl server/url table function/https server url function checks/connection using non-FIPS compatible cipher PSK-AES256-CBC-SHA should be rejected OK 12s 231ms
/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 233ms
/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 181ms
/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 12s 204ms
/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 184ms
/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 12s 216ms
/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 207ms
/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 11s 258ms
/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 221ms
/ssl server/url table function/https server url function checks/connection using non-FIPS compatible cipher AES128-SHA should be rejected OK 11s 228ms
/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 240ms
/ssl server/url table function/https server url function checks/connection using non-FIPS compatible cipher PSK-AES128-CBC-SHA should be rejected OK 12s 222ms
/ssl server/url table function/http server url function checks OK 1s 153ms
/ssl server/url table function/http server url function checks/I read data from the http server using url table function OK 279ms
/ssl server/dictionary OK 13m 37s
/ssl server/dictionary/https server dictionary checks OK 13m 9s
/ssl server/dictionary/https server dictionary checks/Connection with no protocols should be rejected OK 11s 314ms
/ssl server/dictionary/https server dictionary checks/TLSv1.2 suite connection should work OK 11s 388ms
/ssl server/dictionary/https server dictionary checks/TLSv1 suite connection should be rejected OK 11s 333ms
/ssl server/dictionary/https server dictionary checks/TLSv1.1 suite connection should be rejected OK 11s 360ms
/ssl server/dictionary/https server dictionary checks/TLSv1.3 suite connection should be rejected OK 11s 395ms
/ssl server/dictionary/https server dictionary checks/just disabling TLSv1 suite connection should work OK 11s 344ms
/ssl server/dictionary/https server dictionary checks/just disabling TLSv1.1 suite connection should work XFail 12s 430ms
/ssl server/dictionary/https server dictionary checks/just disabling TLSv1.3 suite connection should work OK 12s 384ms
/ssl server/dictionary/https server dictionary checks/connection using FIPS compatible cipher ECDHE-RSA-AES128-GCM-SHA256 should work OK 12s 369ms
/ssl server/dictionary/https server dictionary checks/connection using FIPS compatible cipher ECDHE-RSA-AES256-GCM-SHA384 should work OK 11s 347ms
/ssl server/dictionary/https server dictionary checks/connection using FIPS compatible cipher ECDHE-ECDSA-AES128-GCM-SHA256 should work XFail 11s 355ms
/ssl server/dictionary/https server dictionary checks/connection using FIPS compatible cipher ECDHE-ECDSA-AES256-GCM-SHA384 should work XFail 12s 291ms
/ssl server/dictionary/https server dictionary checks/connection using FIPS compatible cipher AES128-GCM-SHA256 should work OK 11s 356ms
/ssl server/dictionary/https server dictionary checks/connection using FIPS compatible cipher AES256-GCM-SHA384 should work OK 11s 409ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher TLS_AES_256_GCM_SHA384 should be rejected OK 11s 312ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher TLS_CHACHA20_POLY1305_SHA256 should be rejected OK 11s 366ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher TLS_AES_128_GCM_SHA256 should be rejected OK 11s 378ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher DHE-RSA-AES256-GCM-SHA384 should be rejected OK 11s 389ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher ECDHE-ECDSA-CHACHA20-POLY1305 should be rejected OK 11s 461ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher ECDHE-RSA-CHACHA20-POLY1305 should be rejected OK 11s 363ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher DHE-RSA-CHACHA20-POLY1305 should be rejected OK 11s 328ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher DHE-RSA-AES128-GCM-SHA256 should be rejected OK 12s 307ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher ECDHE-ECDSA-AES256-SHA384 should be rejected OK 11s 316ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher ECDHE-RSA-AES256-SHA384 should be rejected OK 12s 382ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher DHE-RSA-AES256-SHA256 should be rejected OK 11s 332ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher ECDHE-ECDSA-AES128-SHA256 should be rejected OK 11s 408ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher ECDHE-RSA-AES128-SHA256 should be rejected OK 11s 346ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher DHE-RSA-AES128-SHA256 should be rejected OK 12s 351ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher ECDHE-ECDSA-AES256-SHA should be rejected OK 11s 386ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher ECDHE-RSA-AES256-SHA should be rejected OK 11s 415ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher DHE-RSA-AES256-SHA should be rejected OK 11s 380ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher ECDHE-ECDSA-AES128-SHA should be rejected OK 11s 396ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher ECDHE-RSA-AES128-SHA should be rejected OK 11s 394ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher DHE-RSA-AES128-SHA should be rejected OK 11s 414ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher RSA-PSK-AES256-GCM-SHA384 should be rejected OK 11s 338ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher DHE-PSK-AES256-GCM-SHA384 should be rejected OK 12s 404ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher RSA-PSK-CHACHA20-POLY1305 should be rejected OK 11s 512ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher DHE-PSK-CHACHA20-POLY1305 should be rejected OK 11s 371ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher ECDHE-PSK-CHACHA20-POLY1305 should be rejected OK 11s 356ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher PSK-AES256-GCM-SHA384 should be rejected OK 11s 441ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher PSK-CHACHA20-POLY1305 should be rejected OK 11s 433ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher RSA-PSK-AES128-GCM-SHA256 should be rejected OK 11s 395ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher DHE-PSK-AES128-GCM-SHA256 should be rejected OK 11s 432ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher PSK-AES128-GCM-SHA256 should be rejected OK 12s 368ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher AES256-SHA256 should be rejected OK 11s 381ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher AES128-SHA256 should be rejected OK 12s 413ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher ECDHE-PSK-AES256-CBC-SHA384 should be rejected OK 11s 380ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher ECDHE-PSK-AES256-CBC-SHA should be rejected OK 12s 334ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher SRP-RSA-AES-256-CBC-SHA should be rejected OK 12s 418ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher SRP-AES-256-CBC-SHA should be rejected OK 11s 367ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher RSA-PSK-AES256-CBC-SHA384 should be rejected OK 11s 371ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher DHE-PSK-AES256-CBC-SHA384 should be rejected OK 12s 348ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher RSA-PSK-AES256-CBC-SHA should be rejected OK 11s 399ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher DHE-PSK-AES256-CBC-SHA should be rejected OK 11s 374ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher AES256-SHA should be rejected OK 11s 336ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher PSK-AES256-CBC-SHA384 should be rejected OK 11s 405ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher PSK-AES256-CBC-SHA should be rejected OK 11s 377ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher ECDHE-PSK-AES128-CBC-SHA256 should be rejected OK 12s 368ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher ECDHE-PSK-AES128-CBC-SHA should be rejected OK 11s 445ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher SRP-RSA-AES-128-CBC-SHA should be rejected OK 11s 460ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher SRP-AES-128-CBC-SHA should be rejected OK 11s 425ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher RSA-PSK-AES128-CBC-SHA256 should be rejected OK 11s 446ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher DHE-PSK-AES128-CBC-SHA256 should be rejected OK 11s 395ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher RSA-PSK-AES128-CBC-SHA should be rejected OK 11s 408ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher DHE-PSK-AES128-CBC-SHA should be rejected OK 11s 397ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher AES128-SHA should be rejected OK 11s 394ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher PSK-AES128-CBC-SHA256 should be rejected OK 12s 421ms
/ssl server/dictionary/https server dictionary checks/connection using non-FIPS compatible cipher PSK-AES128-CBC-SHA should be rejected OK 11s 414ms
/ssl server/dictionary/http server dictionary checks OK 772ms
/ssl server/dictionary/http server dictionary checks/connection to http server using a dictionary OK 440ms
/ssl server/fips OK 7m 25s
/ssl server/fips/server OK 1m 0s
/ssl server/fips/server/tcp connection OK 15s 374ms
/ssl server/fips/server/tcp connection/openssl s_client OK 1s 669ms
/ssl server/fips/server/tcp connection/clickhouse-client OK 13s 703ms
/ssl server/fips/server/tcp connection/clickhouse-client/fips clickhouse-client OK 6s 340ms
/ssl server/fips/server/tcp connection/clickhouse-client/non fips clickhouse-client OK 7s 362ms
/ssl server/fips/server/https connection OK 3s 218ms
/ssl server/fips/server/https connection/openssl s_client OK 1s 537ms
/ssl server/fips/server/https connection/curl OK 1s 680ms
/ssl server/fips/server/all protocols disabled OK 29s 295ms
/ssl server/fips/server/all protocols disabled/tcp connection OK 14s 866ms
/ssl server/fips/server/all protocols disabled/tcp connection/openssl s_client OK 1s 518ms
/ssl server/fips/server/all protocols disabled/tcp connection/clickhouse-client OK 13s 346ms
/ssl server/fips/server/all protocols disabled/tcp connection/clickhouse-client/fips clickhouse-client OK 6s 399ms
/ssl server/fips/server/all protocols disabled/tcp connection/clickhouse-client/non fips clickhouse-client OK 6s 945ms
/ssl server/fips/server/all protocols disabled/https connection OK 3s 175ms
/ssl server/fips/server/all protocols disabled/https connection/openssl s_client OK 1s 533ms
/ssl server/fips/server/all protocols disabled/https connection/curl OK 1s 641ms
/ssl server/fips/clickhouse client OK 42s 863ms
/ssl server/fips/clickhouse client/clickhouse-client with non restricted server OK 15s 851ms
/ssl server/fips/clickhouse client/clickhouse-client with non restricted server/fips clickhouse-client OK 7s 11ms
/ssl server/fips/clickhouse client/clickhouse-client with non restricted server/non fips clickhouse-client OK 8s 839ms
/ssl server/fips/clickhouse client/clickhouse-client with restricted server OK 13s 705ms
/ssl server/fips/clickhouse client/clickhouse-client with restricted server/fips clickhouse-client OK 6s 542ms
/ssl server/fips/clickhouse client/clickhouse-client with restricted server/non fips clickhouse-client OK 7s 162ms
/ssl server/fips/clickhouse server acting as a client OK 5m 14s
/ssl server/fips/clickhouse server acting as a client/url table function OK 2m 15s
/ssl server/fips/clickhouse server acting as a client/url table function/Connection with Protocol=TLS should be accepted OK 432ms
/ssl server/fips/clickhouse server acting as a client/url table function/Connection with Protocol=TLSv1 should be rejected OK 447ms
/ssl server/fips/clickhouse server acting as a client/url table function/Connection with Protocol=TLSv1.1 should be rejected OK 444ms
/ssl server/fips/clickhouse server acting as a client/url table function/Connection with Protocol=TLSv1.2 should be accepted OK 437ms
/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 407ms
/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 410ms
/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 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, TLS_AES_128_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, ECDHE-ECDSA-AES256-GCM-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: ECDHE-RSA-AES128-GCM-SHA256, ECDHE-RSA-AES256-GCM-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: ECDHE-RSA-AES128-GCM-SHA256, DHE-RSA-AES256-GCM-SHA384 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, ECDHE-ECDSA-CHACHA20-POLY1305 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: ECDHE-RSA-AES128-GCM-SHA256, ECDHE-RSA-CHACHA20-POLY1305 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, DHE-RSA-CHACHA20-POLY1305 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, ECDHE-ECDSA-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, ECDHE-RSA-AES128-GCM-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: ECDHE-RSA-AES128-GCM-SHA256, DHE-RSA-AES128-GCM-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-AES128-GCM-SHA256, 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-AES128-GCM-SHA256, ECDHE-RSA-AES256-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, DHE-RSA-AES256-SHA256 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, ECDHE-ECDSA-AES128-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: ECDHE-RSA-AES128-GCM-SHA256, ECDHE-RSA-AES128-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-AES128-GCM-SHA256, DHE-RSA-AES128-SHA256 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-AES128-GCM-SHA256, ECDHE-ECDSA-AES256-SHA 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: ECDHE-RSA-AES128-GCM-SHA256, ECDHE-RSA-AES256-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: ECDHE-RSA-AES128-GCM-SHA256, DHE-RSA-AES256-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, ECDHE-ECDSA-AES128-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: ECDHE-RSA-AES128-GCM-SHA256, ECDHE-RSA-AES128-SHA OK 480ms
/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 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-GCM-SHA384 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, DHE-PSK-AES256-GCM-SHA384 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-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: ECDHE-RSA-AES128-GCM-SHA256, DHE-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-AES128-GCM-SHA256, ECDHE-PSK-CHACHA20-POLY1305 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: ECDHE-RSA-AES128-GCM-SHA256, AES256-GCM-SHA384 OK 506ms
/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 475ms
/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 478ms
/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 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, DHE-PSK-AES128-GCM-SHA256 OK 476ms
/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 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, PSK-AES128-GCM-SHA256 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: ECDHE-RSA-AES128-GCM-SHA256, 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: ECDHE-RSA-AES128-GCM-SHA256, AES128-SHA256 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-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-AES128-GCM-SHA256, ECDHE-PSK-AES256-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-AES128-GCM-SHA256, SRP-RSA-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, SRP-AES-256-CBC-SHA 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-AES256-CBC-SHA384 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, DHE-PSK-AES256-CBC-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-AES128-GCM-SHA256, RSA-PSK-AES256-CBC-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, DHE-PSK-AES256-CBC-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, AES256-SHA 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, PSK-AES256-CBC-SHA384 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-AES128-GCM-SHA256, PSK-AES256-CBC-SHA 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, 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: ECDHE-RSA-AES128-GCM-SHA256, ECDHE-PSK-AES128-CBC-SHA 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, SRP-RSA-AES-128-CBC-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, SRP-AES-128-CBC-SHA 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-AES128-GCM-SHA256, RSA-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, DHE-PSK-AES128-CBC-SHA256 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: ECDHE-RSA-AES128-GCM-SHA256, RSA-PSK-AES128-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, DHE-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, AES128-SHA 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, PSK-AES128-CBC-SHA256 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, PSK-AES128-CBC-SHA OK 439ms
/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 466ms
/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 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_CHACHA20_POLY1305_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: ECDHE-RSA-AES256-GCM-SHA384, TLS_AES_128_GCM_SHA256 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: ECDHE-RSA-AES256-GCM-SHA384, ECDHE-ECDSA-AES256-GCM-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: ECDHE-RSA-AES256-GCM-SHA384, ECDHE-RSA-AES256-GCM-SHA384 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, DHE-RSA-AES256-GCM-SHA384 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: ECDHE-RSA-AES256-GCM-SHA384, ECDHE-ECDSA-CHACHA20-POLY1305 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: ECDHE-RSA-AES256-GCM-SHA384, ECDHE-RSA-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-AES256-GCM-SHA384, DHE-RSA-CHACHA20-POLY1305 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: ECDHE-RSA-AES256-GCM-SHA384, ECDHE-ECDSA-AES128-GCM-SHA256 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: ECDHE-RSA-AES256-GCM-SHA384, ECDHE-RSA-AES128-GCM-SHA256 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, DHE-RSA-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-AES256-GCM-SHA384, ECDHE-ECDSA-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: ECDHE-RSA-AES256-GCM-SHA384, ECDHE-RSA-AES256-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-AES256-GCM-SHA384, DHE-RSA-AES256-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: ECDHE-RSA-AES256-GCM-SHA384, ECDHE-ECDSA-AES128-SHA256 OK 519ms
/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 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, DHE-RSA-AES128-SHA256 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-AES256-SHA OK 496ms
/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 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-RSA-AES256-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, ECDHE-ECDSA-AES128-SHA 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: ECDHE-RSA-AES256-GCM-SHA384, ECDHE-RSA-AES128-SHA 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: ECDHE-RSA-AES256-GCM-SHA384, 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: ECDHE-RSA-AES256-GCM-SHA384, RSA-PSK-AES256-GCM-SHA384 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-AES256-GCM-SHA384 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, RSA-PSK-CHACHA20-POLY1305 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-AES256-GCM-SHA384, DHE-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, ECDHE-PSK-CHACHA20-POLY1305 OK 406ms
/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 446ms
/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 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, PSK-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: ECDHE-RSA-AES256-GCM-SHA384, RSA-PSK-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, DHE-PSK-AES128-GCM-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-AES256-GCM-SHA384, AES128-GCM-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, PSK-AES128-GCM-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: ECDHE-RSA-AES256-GCM-SHA384, AES256-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, AES128-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-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: ECDHE-RSA-AES256-GCM-SHA384, ECDHE-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: ECDHE-RSA-AES256-GCM-SHA384, SRP-RSA-AES-256-CBC-SHA OK 488ms
/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 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-AES256-GCM-SHA384, 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: ECDHE-RSA-AES256-GCM-SHA384, DHE-PSK-AES256-CBC-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: ECDHE-RSA-AES256-GCM-SHA384, RSA-PSK-AES256-CBC-SHA 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-AES256-GCM-SHA384, DHE-PSK-AES256-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-AES256-GCM-SHA384, AES256-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-AES256-GCM-SHA384, PSK-AES256-CBC-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: ECDHE-RSA-AES256-GCM-SHA384, PSK-AES256-CBC-SHA 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, ECDHE-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: ECDHE-RSA-AES256-GCM-SHA384, ECDHE-PSK-AES128-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, SRP-RSA-AES-128-CBC-SHA OK 495ms
/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 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-AES256-GCM-SHA384, RSA-PSK-AES128-CBC-SHA256 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, 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: ECDHE-RSA-AES256-GCM-SHA384, 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-AES256-GCM-SHA384, DHE-PSK-AES128-CBC-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: ECDHE-RSA-AES256-GCM-SHA384, AES128-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-AES256-GCM-SHA384, PSK-AES128-CBC-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, PSK-AES128-CBC-SHA OK 505ms
/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 845us
/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 754us
/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 525us
/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 644us
/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 586us
/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 650us
/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 615us
/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 475us
/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 453us
/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 505us
/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 607us
/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 423us
/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 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-AES128-GCM-SHA256, ECDHE-ECDSA-AES256-SHA384 XFail 491us
/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 492us
/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 635us
/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 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-AES128-GCM-SHA256, ECDHE-RSA-AES128-SHA256 XFail 413us
/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 444us
/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 590us
/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 480us
/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 442us
/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 444us
/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 532us
/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 628us
/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 486us
/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 555us
/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 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, DHE-PSK-CHACHA20-POLY1305 XFail 444us
/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 626us
/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 533us
/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 623us
/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 515us
/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 648us
/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 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-AES128-GCM-SHA256, AES128-GCM-SHA256 XFail 541us
/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 531us
/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 542us
/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 635us
/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 484us
/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 570us
/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 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, SRP-AES-256-CBC-SHA XFail 505us
/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 612us
/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 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-AES128-GCM-SHA256, RSA-PSK-AES256-CBC-SHA XFail 477us
/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 433us
/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 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, PSK-AES256-CBC-SHA384 XFail 646us
/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 657us
/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 559us
/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 590us
/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 804us
/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 578us
/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 541us
/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 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, RSA-PSK-AES128-CBC-SHA XFail 551us
/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 821us
/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 592us
/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 541us
/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 533us
/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 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, TLS_AES_256_GCM_SHA384 XFail 573us
/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 569us
/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 613us
/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 695us
/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 782us
/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 555us
/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 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-AES256-GCM-SHA384, ECDHE-RSA-CHACHA20-POLY1305 XFail 582us
/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 592us
/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 864us
/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 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-AES256-GCM-SHA384, DHE-RSA-AES128-GCM-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-AES256-GCM-SHA384, ECDHE-ECDSA-AES256-SHA384 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-AES256-GCM-SHA384, ECDHE-RSA-AES256-SHA384 XFail 593us
/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 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-AES256-GCM-SHA384, ECDHE-ECDSA-AES128-SHA256 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-RSA-AES128-SHA256 XFail 373us
/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 455us
/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 566us
/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 399us
/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 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, ECDHE-ECDSA-AES128-SHA 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-AES256-GCM-SHA384, ECDHE-RSA-AES128-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-AES256-GCM-SHA384, DHE-RSA-AES128-SHA XFail 589us
/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 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, DHE-PSK-AES256-GCM-SHA384 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, RSA-PSK-CHACHA20-POLY1305 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-AES256-GCM-SHA384, DHE-PSK-CHACHA20-POLY1305 XFail 499us
/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 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, PSK-AES256-GCM-SHA384 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-AES256-GCM-SHA384, 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-AES256-GCM-SHA384, RSA-PSK-AES128-GCM-SHA256 XFail 590us
/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 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-AES256-GCM-SHA384, AES128-GCM-SHA256 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, PSK-AES128-GCM-SHA256 XFail 427us
/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 382us
/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 571us
/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 443us
/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 453us
/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 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, SRP-AES-256-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-AES256-GCM-SHA384, RSA-PSK-AES256-CBC-SHA384 XFail 605us
/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 443us
/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 397us
/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 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-AES256-GCM-SHA384, AES256-SHA XFail 541us
/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 410us
/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 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-AES256-GCM-SHA384, ECDHE-PSK-AES128-CBC-SHA256 XFail 442us
/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 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-AES256-GCM-SHA384, SRP-RSA-AES-128-CBC-SHA XFail 528us
/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 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-AES256-GCM-SHA384, RSA-PSK-AES128-CBC-SHA256 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-AES256-GCM-SHA384, DHE-PSK-AES128-CBC-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-AES256-GCM-SHA384, RSA-PSK-AES128-CBC-SHA XFail 625us
/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 411us
/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 390us
/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 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, PSK-AES128-CBC-SHA XFail 365us
/ssl server/fips/clickhouse server acting as a client/url table function/connection using FIPS compatible cipher AES128-GCM-SHA256 should work 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, TLS_AES_256_GCM_SHA384 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, TLS_CHACHA20_POLY1305_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: AES128-GCM-SHA256, TLS_AES_128_GCM_SHA256 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: AES128-GCM-SHA256, ECDHE-ECDSA-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: AES128-GCM-SHA256, ECDHE-RSA-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: AES128-GCM-SHA256, DHE-RSA-AES256-GCM-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, ECDHE-ECDSA-CHACHA20-POLY1305 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, ECDHE-RSA-CHACHA20-POLY1305 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: AES128-GCM-SHA256, DHE-RSA-CHACHA20-POLY1305 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: AES128-GCM-SHA256, ECDHE-ECDSA-AES128-GCM-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-GCM-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: AES128-GCM-SHA256, DHE-RSA-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: AES128-GCM-SHA256, ECDHE-ECDSA-AES256-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: AES128-GCM-SHA256, ECDHE-RSA-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: AES128-GCM-SHA256, DHE-RSA-AES256-SHA256 OK 486ms
/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 479ms
/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 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-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: AES128-GCM-SHA256, ECDHE-ECDSA-AES256-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, ECDHE-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: AES128-GCM-SHA256, DHE-RSA-AES256-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: AES128-GCM-SHA256, ECDHE-ECDSA-AES128-SHA 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, ECDHE-RSA-AES128-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: AES128-GCM-SHA256, DHE-RSA-AES128-SHA 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-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: AES128-GCM-SHA256, DHE-PSK-AES256-GCM-SHA384 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, RSA-PSK-CHACHA20-POLY1305 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: AES128-GCM-SHA256, DHE-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: AES128-GCM-SHA256, ECDHE-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, AES256-GCM-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, PSK-AES256-GCM-SHA384 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: AES128-GCM-SHA256, 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: AES128-GCM-SHA256, RSA-PSK-AES128-GCM-SHA256 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: AES128-GCM-SHA256, DHE-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: AES128-GCM-SHA256, AES128-GCM-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, PSK-AES128-GCM-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: AES128-GCM-SHA256, AES256-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, AES128-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: AES128-GCM-SHA256, ECDHE-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: AES128-GCM-SHA256, ECDHE-PSK-AES256-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: AES128-GCM-SHA256, SRP-RSA-AES-256-CBC-SHA 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, SRP-AES-256-CBC-SHA 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, RSA-PSK-AES256-CBC-SHA384 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, DHE-PSK-AES256-CBC-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: AES128-GCM-SHA256, RSA-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, DHE-PSK-AES256-CBC-SHA OK 506ms
/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 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-AES256-CBC-SHA384 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: AES128-GCM-SHA256, PSK-AES256-CBC-SHA 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: AES128-GCM-SHA256, ECDHE-PSK-AES128-CBC-SHA256 OK 515ms
/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 459ms
/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 491ms
/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 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, RSA-PSK-AES128-CBC-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: AES128-GCM-SHA256, DHE-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: AES128-GCM-SHA256, RSA-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: AES128-GCM-SHA256, DHE-PSK-AES128-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: AES128-GCM-SHA256, AES128-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-AES128-CBC-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: AES128-GCM-SHA256, PSK-AES128-CBC-SHA OK 451ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection using FIPS compatible cipher AES256-GCM-SHA384 should work OK 486ms
/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 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, TLS_CHACHA20_POLY1305_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: AES256-GCM-SHA384, TLS_AES_128_GCM_SHA256 OK 499ms
/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 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-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, DHE-RSA-AES256-GCM-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: AES256-GCM-SHA384, ECDHE-ECDSA-CHACHA20-POLY1305 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: AES256-GCM-SHA384, ECDHE-RSA-CHACHA20-POLY1305 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: AES256-GCM-SHA384, DHE-RSA-CHACHA20-POLY1305 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, ECDHE-ECDSA-AES128-GCM-SHA256 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-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, DHE-RSA-AES128-GCM-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: AES256-GCM-SHA384, ECDHE-ECDSA-AES256-SHA384 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-RSA-AES256-SHA384 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: AES256-GCM-SHA384, DHE-RSA-AES256-SHA256 OK 486ms
/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 465ms
/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 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-AES128-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: AES256-GCM-SHA384, ECDHE-ECDSA-AES256-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, ECDHE-RSA-AES256-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-RSA-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: 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 448ms
/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 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-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-PSK-AES256-GCM-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: AES256-GCM-SHA384, RSA-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: AES256-GCM-SHA384, DHE-PSK-CHACHA20-POLY1305 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, ECDHE-PSK-CHACHA20-POLY1305 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: AES256-GCM-SHA384, AES256-GCM-SHA384 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, PSK-AES256-GCM-SHA384 OK 500ms
/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 496ms
/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 471ms
/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 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, AES128-GCM-SHA256 OK 488ms
/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 474ms
/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 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, 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: AES256-GCM-SHA384, ECDHE-PSK-AES256-CBC-SHA384 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-AES256-CBC-SHA 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: AES256-GCM-SHA384, SRP-RSA-AES-256-CBC-SHA OK 480ms
/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 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, RSA-PSK-AES256-CBC-SHA384 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-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: AES256-GCM-SHA384, RSA-PSK-AES256-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, DHE-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: AES256-GCM-SHA384, AES256-SHA OK 483ms
/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 507ms
/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 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, ECDHE-PSK-AES128-CBC-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, ECDHE-PSK-AES128-CBC-SHA 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, SRP-RSA-AES-128-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-AES-128-CBC-SHA 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: AES256-GCM-SHA384, RSA-PSK-AES128-CBC-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: AES256-GCM-SHA384, DHE-PSK-AES128-CBC-SHA256 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: AES256-GCM-SHA384, RSA-PSK-AES128-CBC-SHA 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-PSK-AES128-CBC-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, AES128-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: AES256-GCM-SHA384, PSK-AES128-CBC-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: AES256-GCM-SHA384, PSK-AES128-CBC-SHA OK 453ms
/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 442us
/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 395us
/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 429ms
/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 450ms
/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 448ms
/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 409ms
/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 416ms
/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 431ms
/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 427ms
/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 434ms
/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 433ms
/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 421ms
/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 432ms
/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 427ms
/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 471ms
/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 455ms
/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 458ms
/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 437ms
/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 432ms
/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 435ms
/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 471ms
/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 450ms
/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 457ms
/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 475ms
/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 428ms
/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 444ms
/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 440ms
/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 436ms
/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 460ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection using non-FIPS compatible cipher AES256-SHA256 should be rejected OK 447ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection using non-FIPS compatible cipher AES128-SHA256 should be rejected OK 447ms
/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 424ms
/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 439ms
/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 462ms
/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 432ms
/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 461ms
/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 450ms
/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 457ms
/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 441ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection using non-FIPS compatible cipher AES256-SHA should be rejected OK 448ms
/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 456ms
/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 447ms
/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 454ms
/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 446ms
/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 452ms
/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 474ms
/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 435ms
/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 434ms
/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 436ms
/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 463ms
/ssl server/fips/clickhouse server acting as a client/url table function/connection using non-FIPS compatible cipher AES128-SHA should be rejected OK 449ms
/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 449ms
/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 456ms
/ssl server/fips/clickhouse server acting as a client/dictionary OK 2m 46s
/ssl server/fips/clickhouse server acting as a client/dictionary/Connection with Protocol=TLS should be accepted OK 583ms
/ssl server/fips/clickhouse server acting as a client/dictionary/Connection with Protocol=TLSv1 should be rejected OK 595ms
/ssl server/fips/clickhouse server acting as a client/dictionary/Connection with Protocol=TLSv1.1 should be rejected OK 556ms
/ssl server/fips/clickhouse server acting as a client/dictionary/Connection with Protocol=TLSv1.2 should be accepted OK 538ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using FIPS compatible cipher ECDHE-RSA-AES128-GCM-SHA256 should work 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, TLS_AES_256_GCM_SHA384 OK 524ms
/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 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, TLS_AES_128_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: ECDHE-RSA-AES128-GCM-SHA256, ECDHE-ECDSA-AES256-GCM-SHA384 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-AES128-GCM-SHA256, ECDHE-RSA-AES256-GCM-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-GCM-SHA384 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-CHACHA20-POLY1305 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, ECDHE-RSA-CHACHA20-POLY1305 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, DHE-RSA-CHACHA20-POLY1305 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-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 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, DHE-RSA-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: ECDHE-RSA-AES128-GCM-SHA256, ECDHE-ECDSA-AES256-SHA384 OK 522ms
/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 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, DHE-RSA-AES256-SHA256 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-ECDSA-AES128-SHA256 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-AES128-GCM-SHA256, ECDHE-RSA-AES128-SHA256 OK 544ms
/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 594ms
/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 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, ECDHE-RSA-AES256-SHA 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-AES128-GCM-SHA256, DHE-RSA-AES256-SHA 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-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-AES128-GCM-SHA256, ECDHE-RSA-AES128-SHA 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-RSA-AES128-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, RSA-PSK-AES256-GCM-SHA384 OK 514ms
/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 575ms
/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 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, DHE-PSK-CHACHA20-POLY1305 OK 518ms
/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 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, AES256-GCM-SHA384 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, PSK-AES256-GCM-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, PSK-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, RSA-PSK-AES128-GCM-SHA256 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-AES128-GCM-SHA256, DHE-PSK-AES128-GCM-SHA256 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, AES128-GCM-SHA256 OK 544ms
/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 561ms
/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 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, AES128-SHA256 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-AES128-GCM-SHA256, ECDHE-PSK-AES256-CBC-SHA384 OK 518ms
/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 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, SRP-RSA-AES-256-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: ECDHE-RSA-AES128-GCM-SHA256, SRP-AES-256-CBC-SHA OK 586ms
/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 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, DHE-PSK-AES256-CBC-SHA384 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, RSA-PSK-AES256-CBC-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-AES128-GCM-SHA256, DHE-PSK-AES256-CBC-SHA 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, AES256-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, PSK-AES256-CBC-SHA384 OK 588ms
/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 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, ECDHE-PSK-AES128-CBC-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-AES128-GCM-SHA256, ECDHE-PSK-AES128-CBC-SHA 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-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 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, RSA-PSK-AES128-CBC-SHA256 OK 522ms
/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 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, RSA-PSK-AES128-CBC-SHA 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-SHA 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-AES128-GCM-SHA256, AES128-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-AES128-GCM-SHA256, PSK-AES128-CBC-SHA256 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, PSK-AES128-CBC-SHA OK 587ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using FIPS compatible cipher ECDHE-RSA-AES256-GCM-SHA384 should work 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, TLS_AES_256_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-AES256-GCM-SHA384, TLS_CHACHA20_POLY1305_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, TLS_AES_128_GCM_SHA256 OK 605ms
/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 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-RSA-AES256-GCM-SHA384 OK 584ms
/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 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, ECDHE-ECDSA-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: ECDHE-RSA-AES256-GCM-SHA384, ECDHE-RSA-CHACHA20-POLY1305 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, DHE-RSA-CHACHA20-POLY1305 OK 555ms
/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 535ms
/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 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-RSA-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-AES256-GCM-SHA384, ECDHE-ECDSA-AES256-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-AES256-GCM-SHA384, ECDHE-RSA-AES256-SHA384 OK 555ms
/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 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, ECDHE-ECDSA-AES128-SHA256 OK 591ms
/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 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, DHE-RSA-AES128-SHA256 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-ECDSA-AES256-SHA OK 596ms
/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 572ms
/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 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-ECDSA-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-AES256-GCM-SHA384, ECDHE-RSA-AES128-SHA 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-AES256-GCM-SHA384, DHE-RSA-AES128-SHA OK 575ms
/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 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-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, RSA-PSK-CHACHA20-POLY1305 OK 596ms
/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 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-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: ECDHE-RSA-AES256-GCM-SHA384, AES256-GCM-SHA384 OK 606ms
/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 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, PSK-CHACHA20-POLY1305 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-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-AES256-GCM-SHA384, DHE-PSK-AES128-GCM-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-AES256-GCM-SHA384, 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: ECDHE-RSA-AES256-GCM-SHA384, PSK-AES128-GCM-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-AES256-GCM-SHA384, AES256-SHA256 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, AES128-SHA256 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-AES256-GCM-SHA384, ECDHE-PSK-AES256-CBC-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-AES256-GCM-SHA384, ECDHE-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: ECDHE-RSA-AES256-GCM-SHA384, SRP-RSA-AES-256-CBC-SHA OK 523ms
/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 520ms
/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 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, DHE-PSK-AES256-CBC-SHA384 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, RSA-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, DHE-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: ECDHE-RSA-AES256-GCM-SHA384, AES256-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, PSK-AES256-CBC-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, 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: ECDHE-RSA-AES256-GCM-SHA384, ECDHE-PSK-AES128-CBC-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, ECDHE-PSK-AES128-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: ECDHE-RSA-AES256-GCM-SHA384, SRP-RSA-AES-128-CBC-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, SRP-AES-128-CBC-SHA OK 592ms
/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 524ms
/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 535ms
/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 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, DHE-PSK-AES128-CBC-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, AES128-SHA OK 544ms
/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 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, PSK-AES128-CBC-SHA OK 569ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using FIPS compatible cipher ECDHE-ECDSA-AES128-GCM-SHA256 should work XFail 664us
/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 586us
/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 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, TLS_AES_128_GCM_SHA256 XFail 686us
/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 400us
/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 409us
/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 444us
/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 670us
/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 376us
/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 384us
/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 381us
/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 429us
/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 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, ECDHE-ECDSA-AES256-SHA384 XFail 358us
/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 486us
/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 430us
/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 379us
/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 589us
/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 351us
/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 430us
/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 365us
/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 513us
/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 370us
/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 346us
/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 407us
/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 376us
/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 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, RSA-PSK-CHACHA20-POLY1305 XFail 426us
/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 414us
/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 361us
/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 1ms
/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 471us
/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 531us
/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 388us
/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 407us
/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 487us
/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 400us
/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 487us
/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 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-PSK-AES256-CBC-SHA384 XFail 409us
/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 537us
/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 363us
/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 351us
/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 337us
/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 491us
/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 356us
/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 345us
/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 350us
/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 386us
/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 481us
/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 376us
/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 360us
/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 347us
/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 404us
/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 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-AES128-CBC-SHA256 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-AES128-GCM-SHA256, RSA-PSK-AES128-CBC-SHA XFail 429us
/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 351us
/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 528us
/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 480us
/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 366us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using FIPS compatible cipher ECDHE-ECDSA-AES256-GCM-SHA384 should work XFail 355us
/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 351us
/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 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, TLS_AES_128_GCM_SHA256 XFail 404us
/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 370us
/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 345us
/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 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-ECDSA-CHACHA20-POLY1305 XFail 633us
/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 422us
/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 440us
/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 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-RSA-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-AES256-GCM-SHA384, DHE-RSA-AES128-GCM-SHA256 XFail 378us
/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 575us
/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 632us
/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 423us
/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 593us
/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 384us
/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 371us
/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 436us
/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 478us
/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 517us
/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 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, ECDHE-RSA-AES128-SHA XFail 351us
/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 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, RSA-PSK-AES256-GCM-SHA384 XFail 939us
/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 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, RSA-PSK-CHACHA20-POLY1305 XFail 359us
/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 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-PSK-CHACHA20-POLY1305 XFail 480us
/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 630us
/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 364us
/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 373us
/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 388us
/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 368us
/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 517us
/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 430us
/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 480us
/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 430us
/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 537us
/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 358us
/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 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, SRP-AES-256-CBC-SHA XFail 363us
/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 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, DHE-PSK-AES256-CBC-SHA384 XFail 483us
/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 354us
/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 368us
/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 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, PSK-AES256-CBC-SHA384 XFail 359us
/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 648us
/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 345us
/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 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, SRP-RSA-AES-128-CBC-SHA XFail 370us
/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 528us
/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 383us
/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 370us
/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 347us
/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 347us
/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 561us
/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 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, PSK-AES128-CBC-SHA XFail 727us
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using FIPS compatible cipher AES128-GCM-SHA256 should work OK 568ms
/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 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, 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 614ms
/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 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, 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: AES128-GCM-SHA256, DHE-RSA-AES256-GCM-SHA384 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, ECDHE-ECDSA-CHACHA20-POLY1305 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, ECDHE-RSA-CHACHA20-POLY1305 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, DHE-RSA-CHACHA20-POLY1305 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, ECDHE-ECDSA-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: 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 578ms
/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 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, ECDHE-RSA-AES256-SHA384 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, DHE-RSA-AES256-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-ECDSA-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-RSA-AES128-SHA256 OK 573ms
/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 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, ECDHE-ECDSA-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: AES128-GCM-SHA256, ECDHE-RSA-AES256-SHA 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-AES256-SHA OK 590ms
/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 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, ECDHE-RSA-AES128-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, DHE-RSA-AES128-SHA 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, RSA-PSK-AES256-GCM-SHA384 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, DHE-PSK-AES256-GCM-SHA384 OK 532ms
/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 557ms
/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 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, ECDHE-PSK-CHACHA20-POLY1305 OK 581ms
/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 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, PSK-AES256-GCM-SHA384 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, PSK-CHACHA20-POLY1305 OK 585ms
/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 555ms
/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 540ms
/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 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, PSK-AES128-GCM-SHA256 OK 540ms
/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 539ms
/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 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, ECDHE-PSK-AES256-CBC-SHA384 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, ECDHE-PSK-AES256-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-RSA-AES-256-CBC-SHA OK 603ms
/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 562ms
/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 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, DHE-PSK-AES256-CBC-SHA384 OK 609ms
/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 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, DHE-PSK-AES256-CBC-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, AES256-SHA OK 557ms
/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 585ms
/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 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, 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: AES128-GCM-SHA256, ECDHE-PSK-AES128-CBC-SHA OK 599ms
/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 532ms
/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 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, RSA-PSK-AES128-CBC-SHA256 OK 597ms
/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 549ms
/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 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-PSK-AES128-CBC-SHA 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, AES128-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, PSK-AES128-CBC-SHA256 OK 602ms
/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 560ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using FIPS compatible cipher AES256-GCM-SHA384 should work 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, TLS_AES_256_GCM_SHA384 OK 540ms
/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 584ms
/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 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, ECDHE-ECDSA-AES256-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: AES256-GCM-SHA384, ECDHE-RSA-AES256-GCM-SHA384 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, DHE-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: AES256-GCM-SHA384, ECDHE-ECDSA-CHACHA20-POLY1305 OK 526ms
/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 603ms
/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 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-ECDSA-AES128-GCM-SHA256 OK 579ms
/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 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-RSA-AES128-GCM-SHA256 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-ECDSA-AES256-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-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, DHE-RSA-AES256-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, ECDHE-ECDSA-AES128-SHA256 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-AES128-SHA256 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-RSA-AES128-SHA256 OK 592ms
/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 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-RSA-AES256-SHA 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-ECDSA-AES128-SHA OK 556ms
/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 534ms
/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 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, 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: AES256-GCM-SHA384, DHE-PSK-AES256-GCM-SHA384 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, RSA-PSK-CHACHA20-POLY1305 OK 630ms
/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 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, ECDHE-PSK-CHACHA20-POLY1305 OK 586ms
/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 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-AES256-GCM-SHA384 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, PSK-CHACHA20-POLY1305 OK 550ms
/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 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, DHE-PSK-AES128-GCM-SHA256 OK 529ms
/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 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-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 517ms
/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 589ms
/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 528ms
/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 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, SRP-RSA-AES-256-CBC-SHA OK 540ms
/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 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, RSA-PSK-AES256-CBC-SHA384 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, DHE-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: AES256-GCM-SHA384, RSA-PSK-AES256-CBC-SHA OK 540ms
/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 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, AES256-SHA 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, PSK-AES256-CBC-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, PSK-AES256-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: AES256-GCM-SHA384, ECDHE-PSK-AES128-CBC-SHA256 OK 540ms
/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 525ms
/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 529ms
/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 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, RSA-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: AES256-GCM-SHA384, DHE-PSK-AES128-CBC-SHA256 OK 568ms
/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 595ms
/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 530ms
/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 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, PSK-AES128-CBC-SHA256 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, PSK-AES128-CBC-SHA OK 543ms
/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 1ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using non-FIPS compatible cipher TLS_CHACHA20_POLY1305_SHA256 should be rejected XFail 749us
/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 400us
/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 525ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using non-FIPS compatible cipher ECDHE-ECDSA-CHACHA20-POLY1305 should be rejected OK 551ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using non-FIPS compatible cipher ECDHE-RSA-CHACHA20-POLY1305 should be rejected OK 553ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using non-FIPS compatible cipher DHE-RSA-CHACHA20-POLY1305 should be rejected OK 531ms
/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 533ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using non-FIPS compatible cipher ECDHE-ECDSA-AES256-SHA384 should be rejected OK 573ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using non-FIPS compatible cipher ECDHE-RSA-AES256-SHA384 should be rejected OK 609ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using non-FIPS compatible cipher DHE-RSA-AES256-SHA256 should be rejected OK 564ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using non-FIPS compatible cipher ECDHE-ECDSA-AES128-SHA256 should be rejected OK 567ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using non-FIPS compatible cipher ECDHE-RSA-AES128-SHA256 should be rejected OK 548ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using non-FIPS compatible cipher DHE-RSA-AES128-SHA256 should be rejected OK 568ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using non-FIPS compatible cipher ECDHE-ECDSA-AES256-SHA should be rejected OK 575ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using non-FIPS compatible cipher ECDHE-RSA-AES256-SHA should be rejected OK 533ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using non-FIPS compatible cipher DHE-RSA-AES256-SHA should be rejected OK 532ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using non-FIPS compatible cipher ECDHE-ECDSA-AES128-SHA should be rejected OK 525ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using non-FIPS compatible cipher ECDHE-RSA-AES128-SHA should be rejected OK 558ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using non-FIPS compatible cipher DHE-RSA-AES128-SHA should be rejected OK 568ms
/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 532ms
/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 531ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using non-FIPS compatible cipher RSA-PSK-CHACHA20-POLY1305 should be rejected OK 577ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using non-FIPS compatible cipher DHE-PSK-CHACHA20-POLY1305 should be rejected OK 556ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using non-FIPS compatible cipher ECDHE-PSK-CHACHA20-POLY1305 should be rejected OK 550ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using non-FIPS compatible cipher PSK-AES256-GCM-SHA384 should be rejected OK 548ms
/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 530ms
/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 542ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using non-FIPS compatible cipher PSK-AES128-GCM-SHA256 should be rejected OK 519ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using non-FIPS compatible cipher AES256-SHA256 should be rejected OK 520ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using non-FIPS compatible cipher AES128-SHA256 should be rejected OK 530ms
/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 530ms
/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 507ms
/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 540ms
/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 538ms
/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 513ms
/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 555ms
/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 537ms
/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 530ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using non-FIPS compatible cipher AES256-SHA should be rejected OK 524ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using non-FIPS compatible cipher PSK-AES256-CBC-SHA384 should be rejected OK 531ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using non-FIPS compatible cipher PSK-AES256-CBC-SHA should be rejected OK 544ms
/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 542ms
/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 524ms
/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 551ms
/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 587ms
/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 572ms
/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 543ms
/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 620ms
/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 528ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using non-FIPS compatible cipher AES128-SHA should be rejected OK 541ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using non-FIPS compatible cipher PSK-AES128-CBC-SHA256 should be rejected OK 576ms
/ssl server/fips/clickhouse server acting as a client/dictionary/connection using non-FIPS compatible cipher PSK-AES128-CBC-SHA should be rejected OK 621ms
/ssl server/zookeeper OK 9m 41s
/ssl server/zookeeper/secure connection OK 28s 974ms
/ssl server/zookeeper/secure connection to invalid zookeeper port OK 55s 347ms
/ssl server/zookeeper/secure connection with empty truststore OK 56s 245ms
/ssl server/zookeeper/secure connection with unsigned client certificate OK 52s 245ms
/ssl server/zookeeper/secure connection without client certificate OK 54s 982ms
/ssl server/zookeeper/fips OK 5m 3s
/ssl server/zookeeper/fips/ECDHE-RSA-AES128-GCM-SHA256 OK 29s 164ms
/ssl server/zookeeper/fips/ECDHE-RSA-AES128-GCM-SHA256/fips connection OK 29s 164ms
/ssl server/zookeeper/fips/ECDHE-RSA-AES256-GCM-SHA384 OK 25s 950ms
/ssl server/zookeeper/fips/ECDHE-RSA-AES256-GCM-SHA384/fips connection OK 25s 950ms
/ssl server/zookeeper/fips/ECDHE-ECDSA-AES128-GCM-SHA256 OK 52s 454ms
/ssl server/zookeeper/fips/ECDHE-ECDSA-AES128-GCM-SHA256/fips connection XFail 52s 453ms
/ssl server/zookeeper/fips/ECDHE-ECDSA-AES256-GCM-SHA384 OK 55s 534ms
/ssl server/zookeeper/fips/ECDHE-ECDSA-AES256-GCM-SHA384/fips connection XFail 55s 533ms
/ssl server/zookeeper/fips/AES128-GCM-SHA256 OK 55s 514ms
/ssl server/zookeeper/fips/AES128-GCM-SHA256/fips connection XFail 55s 513ms
/ssl server/zookeeper/fips/AES256-GCM-SHA384 OK 55s 666ms
/ssl server/zookeeper/fips/AES256-GCM-SHA384/fips connection XFail 55s 665ms
/ssl server/zookeeper/fips/any compatible OK 28s 990ms
/ssl server/zookeeper/fips/any compatible/fips connection OK 28s 989ms
/ssl server/zookeeper fips OK 9m 26s
/ssl server/zookeeper fips/secure connection OK 25s 937ms
/ssl server/zookeeper fips/secure connection to invalid zookeeper port OK 52s 381ms
/ssl server/zookeeper fips/secure connection with empty truststore OK 58s 868ms
/ssl server/zookeeper fips/secure connection with unsigned client certificate OK 52s 860ms
/ssl server/zookeeper fips/secure connection without client certificate OK 52s 523ms
/ssl server/zookeeper fips/fips OK 4m 47s
/ssl server/zookeeper fips/fips/ECDHE-RSA-AES128-GCM-SHA256 OK 26s 15ms
/ssl server/zookeeper fips/fips/ECDHE-RSA-AES128-GCM-SHA256/fips connection OK 26s 14ms
/ssl server/zookeeper fips/fips/ECDHE-RSA-AES256-GCM-SHA384 OK 25s 969ms
/ssl server/zookeeper fips/fips/ECDHE-RSA-AES256-GCM-SHA384/fips connection OK 25s 967ms
/ssl server/zookeeper fips/fips/ECDHE-ECDSA-AES128-GCM-SHA256 OK 52s 417ms
/ssl server/zookeeper fips/fips/ECDHE-ECDSA-AES128-GCM-SHA256/fips connection XFail 52s 416ms
/ssl server/zookeeper fips/fips/ECDHE-ECDSA-AES256-GCM-SHA384 OK 52s 446ms
/ssl server/zookeeper fips/fips/ECDHE-ECDSA-AES256-GCM-SHA384/fips connection XFail 52s 446ms
/ssl server/zookeeper fips/fips/AES128-GCM-SHA256 OK 52s 481ms
/ssl server/zookeeper fips/fips/AES128-GCM-SHA256/fips connection XFail 52s 480ms
/ssl server/zookeeper fips/fips/AES256-GCM-SHA384 OK 52s 554ms
/ssl server/zookeeper fips/fips/AES256-GCM-SHA384/fips connection XFail 52s 553ms
/ssl server/zookeeper fips/fips/any compatible OK 25s 966ms
/ssl server/zookeeper fips/fips/any compatible/fips connection OK 25s 965ms
/ssl server/ca chain OK 25m 42s
/ssl server/ca chain/use root ca OK 3m 23s
/ssl server/ca chain/use root ca/with caconfig OK 1m 36s
/ssl server/ca chain/use root ca/with caconfig/all certificates in chain OK 48s 327ms
/ssl server/ca chain/use root ca/with caconfig/invalid first CA in chain on one node OK 48s 202ms
/ssl server/ca chain/use root ca/without caconfig OK 1m 47s
/ssl server/ca chain/use root ca/without caconfig/all trusted OK 52s 979ms
/ssl server/ca chain/use root ca/without caconfig/missing first trusted CA on one node OK 54s 255ms
/ssl server/ca chain/use first intermediate ca OK 6m 10s
/ssl server/ca chain/use first intermediate ca/with caconfig OK 2m 28s
/ssl server/ca chain/use first intermediate ca/with caconfig/all certificates in chain OK 49s 294ms
/ssl server/ca chain/use first intermediate ca/with caconfig/missing first CA in chain on one node OK 51s 216ms
/ssl server/ca chain/use first intermediate ca/with caconfig/missing last CA in chain on one node OK 48s 458ms
/ssl server/ca chain/use first intermediate ca/with caconfig OK 50s 561ms
/ssl server/ca chain/use first intermediate ca/without caconfig OK 2m 51s
/ssl server/ca chain/use first intermediate ca/without caconfig/without caconfig OK 58s 369ms
/ssl server/ca chain/use first intermediate ca/without caconfig/missing first trusted CA on one node OK 58s 154ms
/ssl server/ca chain/use first intermediate ca/without caconfig/missing last trusted CA on one node OK 54s 860ms
/ssl server/ca chain/use second intermediate ca OK 16m 6s
/ssl server/ca chain/use second intermediate ca/server certificate with chain OK 6m 51s
/ssl server/ca chain/use second intermediate ca/server certificate with chain/with caconfig OK 3m 18s
/ssl server/ca chain/use second intermediate ca/server certificate with chain/with caconfig/all certificates present OK 51s 243ms
/ssl server/ca chain/use second intermediate ca/server certificate with chain/with caconfig/missing first CA in chain on one node OK 49s 89ms
/ssl server/ca chain/use second intermediate ca/server certificate with chain/with caconfig/missing last CA in chain on one node OK 49s 979ms
/ssl server/ca chain/use second intermediate ca/server certificate with chain/with caconfig/missing all CA in chain on one node OK 48s 1ms
/ssl server/ca chain/use second intermediate ca/server certificate with chain/without caconfig OK 3m 32s
/ssl server/ca chain/use second intermediate ca/server certificate with chain/without caconfig/all certificates present OK 51s 301ms
/ssl server/ca chain/use second intermediate ca/server certificate with chain/without caconfig/missing first CA in chain on one node OK 55s 758ms
/ssl server/ca chain/use second intermediate ca/server certificate with chain/without caconfig/missing last CA in chain on one node OK 50s 715ms
/ssl server/ca chain/use second intermediate ca/server certificate with chain/without caconfig/missing all CA in chain on one node OK 55s 212ms
/ssl server/ca chain/use second intermediate ca/server certificate without chain OK 9m 15s
/ssl server/ca chain/use second intermediate ca/server certificate without chain/with caconfig OK 4m 7s
/ssl server/ca chain/use second intermediate ca/server certificate without chain/with caconfig/all certificates present OK 46s 742ms
/ssl server/ca chain/use second intermediate ca/server certificate without chain/with caconfig/missing first CA in chain on one node OK 51s 683ms
/ssl server/ca chain/use second intermediate ca/server certificate without chain/with caconfig/missing middle CA in chain on one node OK 48s 382ms
/ssl server/ca chain/use second intermediate ca/server certificate without chain/with caconfig/missing last CA in chain on one node OK 51s 15ms
/ssl server/ca chain/use second intermediate ca/server certificate without chain/with caconfig/missing some CA in chain on all nodes OK 49s 243ms
/ssl server/ca chain/use second intermediate ca/server certificate without chain/without caconfig OK 5m 8s
/ssl server/ca chain/use second intermediate ca/server certificate without chain/without caconfig/all certificates present OK 1m 3s
/ssl server/ca chain/use second intermediate ca/server certificate without chain/without caconfig/missing first trusted CA on one node OK 1m 2s
/ssl server/ca chain/use second intermediate ca/server certificate without chain/without caconfig/missing middle trusted CA on one node OK 1m 3s
/ssl server/ca chain/use second intermediate ca/server certificate without chain/without caconfig/missing last trusted CA on one node OK 1m 0s
/ssl server/ca chain/use second intermediate ca/server certificate without chain/without caconfig/missing trusted CA on all nodes OK 58s 445ms

Generated by TestFlows Open-Source Test Framework v2.0.231215.1221232