Lines Matching refs:signature

357         if (ctx->op.sig.algctx != NULL && ctx->op.sig.signature != NULL)  in evp_pkey_ctx_free_old_ops()
358 ctx->op.sig.signature->freectx(ctx->op.sig.algctx); in evp_pkey_ctx_free_old_ops()
359 EVP_SIGNATURE_free(ctx->op.sig.signature); in evp_pkey_ctx_free_old_ops()
361 ctx->op.sig.signature = NULL; in evp_pkey_ctx_free_old_ops()
500 if (pctx->op.sig.signature != NULL) { in EVP_PKEY_CTX_dup()
501 rctx->op.sig.signature = pctx->op.sig.signature; in EVP_PKEY_CTX_dup()
502 if (!EVP_SIGNATURE_up_ref(rctx->op.sig.signature)) in EVP_PKEY_CTX_dup()
506 if (!ossl_assert(pctx->op.sig.signature != NULL)) in EVP_PKEY_CTX_dup()
509 if (pctx->op.sig.signature->dupctx != NULL) in EVP_PKEY_CTX_dup()
511 = pctx->op.sig.signature->dupctx(pctx->op.sig.algctx); in EVP_PKEY_CTX_dup()
514 EVP_SIGNATURE_free(rctx->op.sig.signature); in EVP_PKEY_CTX_dup()
515 rctx->op.sig.signature = NULL; in EVP_PKEY_CTX_dup()
674 && ctx->op.sig.signature != NULL in EVP_PKEY_CTX_set_params()
675 && ctx->op.sig.signature->set_ctx_params != NULL) in EVP_PKEY_CTX_set_params()
677 ctx->op.sig.signature->set_ctx_params(ctx->op.sig.algctx, in EVP_PKEY_CTX_set_params()
718 && ctx->op.sig.signature != NULL in EVP_PKEY_CTX_get_params()
719 && ctx->op.sig.signature->get_ctx_params != NULL) in EVP_PKEY_CTX_get_params()
721 ctx->op.sig.signature->get_ctx_params(ctx->op.sig.algctx, in EVP_PKEY_CTX_get_params()
764 && ctx->op.sig.signature != NULL in EVP_PKEY_CTX_gettable_params()
765 && ctx->op.sig.signature->gettable_ctx_params != NULL) { in EVP_PKEY_CTX_gettable_params()
767 EVP_SIGNATURE_get0_provider(ctx->op.sig.signature)); in EVP_PKEY_CTX_gettable_params()
768 return ctx->op.sig.signature->gettable_ctx_params(ctx->op.sig.algctx, in EVP_PKEY_CTX_gettable_params()
808 && ctx->op.sig.signature != NULL in EVP_PKEY_CTX_settable_params()
809 && ctx->op.sig.signature->settable_ctx_params != NULL) { in EVP_PKEY_CTX_settable_params()
811 EVP_SIGNATURE_get0_provider(ctx->op.sig.signature)); in EVP_PKEY_CTX_settable_params()
812 return ctx->op.sig.signature->settable_ctx_params(ctx->op.sig.algctx, in EVP_PKEY_CTX_settable_params()
1562 if (ctx->op.sig.signature != NULL) in EVP_PKEY_CTX_get0_provider()
1563 return EVP_SIGNATURE_get0_provider(ctx->op.sig.signature); in EVP_PKEY_CTX_get0_provider()