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 3d43cfa376877a974bea407f8e4b4c3481fe8d4a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 16 Jun 2025 15:59:11 +0000 Subject: [PATCH 2/2] Update loguru requirement from ==0.*,>=0.5 to ==0.* in /python Updates the requirements on [loguru](https://github.com/Delgan/loguru) to permit the latest version. - [Release notes](https://github.com/Delgan/loguru/releases) - [Changelog](https://github.com/Delgan/loguru/blob/master/CHANGELOG.rst) - [Commits](https://github.com/Delgan/loguru/compare/0.5.0...0.7.3) --- updated-dependencies: - dependency-name: loguru dependency-version: 0.7.3 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..cbae5b206460 100644 --- a/python/requirements.txt +++ b/python/requirements.txt @@ -1,3 +1,3 @@ -loguru >= 0.5, == 0.* +loguru == 0.* cryptography == 37.* string-color >= 1.2.1