From de7329a31d57774bc135c41bc60c0fd4888fb107 Mon Sep 17 00:00:00 2001 From: Eddy Ashton Date: Tue, 2 Aug 2022 14:10:12 +0000 Subject: [PATCH 1/2] Support secp256r1 for Server Temp Key --- src/tls/context.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tls/context.h b/src/tls/context.h index fc3eb7b1345e..54fafcd0fa82 100644 --- a/src/tls/context.h +++ b/src/tls/context.h @@ -57,8 +57,8 @@ namespace tls SSL_set_ciphersuites(ssl, ciphersuites); // Restrict the curves to approved ones - SSL_CTX_set1_curves_list(cfg, "P-521:P-384"); - SSL_set1_curves_list(ssl, "P-521:P-384"); + SSL_CTX_set1_curves_list(cfg, "P-521:P-384:P-256"); + SSL_set1_curves_list(ssl, "P-521:P-384:P-256"); // Initialise connection if (client) From 1fa201f1951a7ad513d80a87296c17fb0d1eb692 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Sep 2025 14:02:25 +0000 Subject: [PATCH 2/2] Update cryptography requirement from ==37.* to ==46.* in /python Updates the requirements on [cryptography](https://github.com/pyca/cryptography) to permit the latest version. - [Changelog](https://github.com/pyca/cryptography/blob/main/CHANGELOG.rst) - [Commits](https://github.com/pyca/cryptography/compare/37.0.0...46.0.1) --- updated-dependencies: - dependency-name: cryptography dependency-version: 46.0.1 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- python/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/requirements.txt b/python/requirements.txt index e22373ecb8fd..2a9384e4e34e 100644 --- a/python/requirements.txt +++ b/python/requirements.txt @@ -1,3 +1,3 @@ loguru >= 0.5, == 0.* -cryptography == 37.* +cryptography == 46.* string-color >= 1.2.1