diff --git a/js/ccf-app/package.json b/js/ccf-app/package.json index b528fd123830..af92f3960130 100644 --- a/js/ccf-app/package.json +++ b/js/ccf-app/package.json @@ -28,7 +28,7 @@ "mocha": "^10.0.0", "node-forge": "^1.2.0", "ts-node": "^10.4.0", - "typedoc": "^0.23.1", + "typedoc": "^0.28.14", "typescript": "^4.2.4" } } 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)