summaryrefslogtreecommitdiffstats
path: root/providers/implementations
diff options
context:
space:
mode:
Diffstat (limited to 'providers/implementations')
-rw-r--r--providers/implementations/signature/ecdsa_sig.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/providers/implementations/signature/ecdsa_sig.c b/providers/implementations/signature/ecdsa_sig.c
index 440b176783..52607245a4 100644
--- a/providers/implementations/signature/ecdsa_sig.c
+++ b/providers/implementations/signature/ecdsa_sig.c
@@ -801,18 +801,9 @@ static const OSSL_PARAM settable_ctx_params[] = {
ECDSA_COMMON_SETTABLE_CTX_PARAMS
};
-static const OSSL_PARAM settable_ctx_params_no_digest[] = {
- OSSL_PARAM_uint(OSSL_SIGNATURE_PARAM_KAT, NULL),
- OSSL_PARAM_END
-};
-
static const OSSL_PARAM *ecdsa_settable_ctx_params(void *vctx,
ossl_unused void *provctx)
{
- PROV_ECDSA_CTX *ctx = (PROV_ECDSA_CTX *)vctx;
-
- if (ctx != NULL && !ctx->flag_allow_md)
- return settable_ctx_params_no_digest;
return settable_ctx_params;
}