Lines Matching defs:desc
58 const struct keytype_desc_st *desc;
64 msblob2key_newctx(void *provctx, const struct keytype_desc_st *desc)
70 ctx->desc = desc;
113 if ((isdss && ctx->desc->type != EVP_PKEY_DSA)
114 || (!isdss && ctx->desc->type != EVP_PKEY_RSA))
136 && ctx->desc->read_private_key != NULL) {
143 key = ctx->desc->read_private_key(&p, bitlen, ispub);
150 && ctx->desc->read_public_key != NULL) {
152 key = ctx->desc->read_public_key(&p, bitlen, ispub);
157 if (key != NULL && ctx->desc->adjust_key != NULL)
158 ctx->desc->adjust_key(key, ctx);
185 (char *)ctx->desc->name, 0);
198 ctx->desc->free_key(key);
210 ossl_prov_get_keymgmt_export(ctx->desc->fns);