Home | History | Annotate | Download | only in evp

Lines Matching full:rctx

309 	EVP_PKEY_CTX *rctx;
320 rctx = OPENSSL_malloc(sizeof(EVP_PKEY_CTX));
321 if (!rctx)
324 rctx->pmeth = pctx->pmeth;
326 rctx->engine = pctx->engine;
332 rctx->pkey = pctx->pkey;
337 rctx->peerkey = pctx->peerkey;
339 rctx->data = NULL;
340 rctx->app_data = NULL;
341 rctx->operation = pctx->operation;
343 if (pctx->pmeth->copy(rctx, pctx) > 0)
344 return rctx;
346 EVP_PKEY_CTX_free(rctx);