Home
last modified time | relevance | path

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

/netbsd-src/crypto/external/bsd/openssl/dist/crypto/encode_decode/
H A Ddecoder_lib.c215 OSSL_DECODER_INSTANCE *decoder_inst = NULL; in ossl_decoder_instance_new() local
226 if ((decoder_inst = OPENSSL_zalloc(sizeof(*decoder_inst))) == NULL) { in ossl_decoder_instance_new()
243 decoder_inst->input_type = ossl_property_get_string_value(libctx, prop); in ossl_decoder_instance_new()
244 if (decoder_inst->input_type == NULL) { in ossl_decoder_instance_new()
256 decoder_inst->input_structure in ossl_decoder_instance_new()
264 decoder_inst->decoder = decoder; in ossl_decoder_instance_new()
265 decoder_inst->decoderctx = decoderctx; in ossl_decoder_instance_new()
266 return decoder_inst; in ossl_decoder_instance_new()
268 ossl_decoder_instance_free(decoder_inst); in ossl_decoder_instance_new()
272 void ossl_decoder_instance_free(OSSL_DECODER_INSTANCE *decoder_inst) in ossl_decoder_instance_free() argument
[all …]
H A Ddecoder_pkey.c66 static int decoder_construct_pkey(OSSL_DECODER_INSTANCE *decoder_inst, in decoder_construct_pkey() argument
71 OSSL_DECODER *decoder = OSSL_DECODER_INSTANCE_get_decoder(decoder_inst); in decoder_construct_pkey()
72 void *decoderctx = OSSL_DECODER_INSTANCE_get_decoder_ctx(decoder_inst); in decoder_construct_pkey()
H A Ddecoder_meth.c676 OSSL_DECODER_INSTANCE *decoder_inst = in OSSL_DECODER_CTX_set_params() local
679 OSSL_DECODER_INSTANCE_get_decoder(decoder_inst); in OSSL_DECODER_CTX_set_params()
681 OSSL_DECODER_INSTANCE_get_decoder_ctx(decoder_inst); in OSSL_DECODER_CTX_set_params()
/netbsd-src/crypto/external/bsd/openssl/dist/include/openssl/
H A Ddecoder.h84 OSSL_DECODER_INSTANCE_get_decoder(OSSL_DECODER_INSTANCE *decoder_inst);
86 OSSL_DECODER_INSTANCE_get_decoder_ctx(OSSL_DECODER_INSTANCE *decoder_inst);
88 OSSL_DECODER_INSTANCE_get_input_type(OSSL_DECODER_INSTANCE *decoder_inst);
90 OSSL_DECODER_INSTANCE_get_input_structure(OSSL_DECODER_INSTANCE *decoder_inst,
93 typedef int OSSL_DECODER_CONSTRUCT(OSSL_DECODER_INSTANCE *decoder_inst,
108 int OSSL_DECODER_export(OSSL_DECODER_INSTANCE *decoder_inst,
/netbsd-src/crypto/external/bsd/openssl/dist/include/crypto/
H A Ddecoder.h31 void ossl_decoder_instance_free(OSSL_DECODER_INSTANCE *decoder_inst);
/netbsd-src/crypto/external/bsd/openssl/dist/providers/implementations/storemgmt/
H A Dfile_store.c389 static int file_load_construct(OSSL_DECODER_INSTANCE *decoder_inst, in file_load_construct() argument