Home
last modified time | relevance | path

Searched refs:encoder_inst (Results 1 – 6 of 6) sorted by relevance

/openssl-master/crypto/encode_decode/
A Dencoder_lib.c197 if ((encoder_inst = OPENSSL_zalloc(sizeof(*encoder_inst))) == NULL) { in ossl_encoder_instance_new()
237 return encoder_inst; in ossl_encoder_instance_new()
245 if (encoder_inst != NULL) { in ossl_encoder_instance_free()
247 encoder_inst->encoder->freectx(encoder_inst->encoderctx); in ossl_encoder_instance_free()
251 OPENSSL_free(encoder_inst); in ossl_encoder_instance_free()
297 || (encoder_inst = in OSSL_ENCODER_CTX_add_encoder()
363 if (encoder_inst == NULL) in OSSL_ENCODER_INSTANCE_get_encoder()
365 return encoder_inst->encoder; in OSSL_ENCODER_INSTANCE_get_encoder()
371 if (encoder_inst == NULL) in OSSL_ENCODER_INSTANCE_get_encoder_ctx()
379 if (encoder_inst == NULL) in OSSL_ENCODER_INSTANCE_get_output_type()
[all …]
A Dencoder_pkey.c159 OSSL_ENCODER_INSTANCE *encoder_inst; member
167 OSSL_ENCODER_INSTANCE *encoder_inst = construct_data->encoder_inst; in encoder_import_cb() local
168 OSSL_ENCODER *encoder = OSSL_ENCODER_INSTANCE_get_encoder(encoder_inst); in encoder_import_cb()
169 void *encoderctx = OSSL_ENCODER_INSTANCE_get_encoder_ctx(encoder_inst); in encoder_import_cb()
178 encoder_construct_pkey(OSSL_ENCODER_INSTANCE *encoder_inst, void *arg) in encoder_construct_pkey() argument
184 OSSL_ENCODER_INSTANCE_get_encoder(encoder_inst); in encoder_construct_pkey()
190 data->encoder_inst = encoder_inst; in encoder_construct_pkey()
208 if (data->encoder_inst != NULL) { in encoder_destruct_pkey()
210 OSSL_ENCODER_INSTANCE_get_encoder(data->encoder_inst); in encoder_destruct_pkey()
A Dencoder_local.h67 void ossl_encoder_instance_free(OSSL_ENCODER_INSTANCE *encoder_inst);
A Dencoder_meth.c630 OSSL_ENCODER_INSTANCE *encoder_inst = in OSSL_ENCODER_CTX_set_params() local
632 OSSL_ENCODER *encoder = OSSL_ENCODER_INSTANCE_get_encoder(encoder_inst); in OSSL_ENCODER_CTX_set_params()
633 void *encoderctx = OSSL_ENCODER_INSTANCE_get_encoder_ctx(encoder_inst); in OSSL_ENCODER_CTX_set_params()
/openssl-master/include/openssl/
A Dencoder.h83 OSSL_ENCODER_INSTANCE_get_encoder(OSSL_ENCODER_INSTANCE *encoder_inst);
85 OSSL_ENCODER_INSTANCE_get_encoder_ctx(OSSL_ENCODER_INSTANCE *encoder_inst);
87 OSSL_ENCODER_INSTANCE_get_output_type(OSSL_ENCODER_INSTANCE *encoder_inst);
89 OSSL_ENCODER_INSTANCE_get_output_structure(OSSL_ENCODER_INSTANCE *encoder_inst);
91 typedef const void *OSSL_ENCODER_CONSTRUCT(OSSL_ENCODER_INSTANCE *encoder_inst,
/openssl-master/doc/man3/
A DOSSL_ENCODER_CTX.pod53 OSSL_ENCODER_INSTANCE_get_encoder(OSSL_ENCODER_INSTANCE *encoder_inst);
55 OSSL_ENCODER_INSTANCE_get_encoder_ctx(OSSL_ENCODER_INSTANCE *encoder_inst);
57 OSSL_ENCODER_INSTANCE_get_output_type(OSSL_ENCODER_INSTANCE *encoder_inst);
59 OSSL_ENCODER_INSTANCE_get_output_structure(OSSL_ENCODER_INSTANCE *encoder_inst);
61 typedef const void *OSSL_ENCODER_CONSTRUCT(OSSL_ENCODER_INSTANCE *encoder_inst,
138 =item I<encoder_inst>
156 implementation of the encoder instance I<encoder_inst>.
159 implementation's provider context of the encoder instance I<encoder_inst>.
162 for the encoder implementation of the encoder instance I<encoder_inst>.
167 I<encoder_inst>.

Completed in 8 milliseconds