Home
last modified time | relevance | path

Searched refs:encoderctx (Results 1 – 4 of 4) sorted by relevance

/third_party/openssl/crypto/encode_decode/
Dencoder_lib.c183 void *encoderctx) in ossl_encoder_instance_new() argument
235 encoder_inst->encoderctx = encoderctx; in ossl_encoder_instance_new()
246 encoder_inst->encoder->freectx(encoder_inst->encoderctx); in ossl_encoder_instance_free()
247 encoder_inst->encoderctx = NULL; in ossl_encoder_instance_free()
284 void *encoderctx = NULL; in OSSL_ENCODER_CTX_add_encoder() local
295 if ((encoderctx = encoder->newctx(provctx)) == NULL in OSSL_ENCODER_CTX_add_encoder()
297 ossl_encoder_instance_new(encoder, encoderctx)) == NULL) in OSSL_ENCODER_CTX_add_encoder()
300 encoderctx = NULL; in OSSL_ENCODER_CTX_add_encoder()
308 if (encoderctx != NULL) in OSSL_ENCODER_CTX_add_encoder()
309 encoder->freectx(encoderctx); in OSSL_ENCODER_CTX_add_encoder()
[all …]
Dencoder_pkey.c168 void *encoderctx = OSSL_ENCODER_INSTANCE_get_encoder_ctx(encoder_inst); in encoder_import_cb() local
171 encoder->import_object(encoderctx, construct_data->selection, params); in encoder_import_cb()
Dencoder_meth.c681 void *encoderctx = OSSL_ENCODER_INSTANCE_get_encoder_ctx(encoder_inst); in OSSL_ENCODER_CTX_set_params() local
683 if (encoderctx == NULL || encoder->set_ctx_params == NULL) in OSSL_ENCODER_CTX_set_params()
685 if (!encoder->set_ctx_params(encoderctx, params)) in OSSL_ENCODER_CTX_set_params()
Dencoder_local.h60 void *encoderctx; /* Never NULL */ member