Home
last modified time | relevance | path

Searched refs:algodef (Results 1 - 25 of 38) sorted by relevance

12

/third_party/node/deps/openssl/openssl/crypto/encode_decode/
H A Ddecoder_meth.c220 void *ossl_decoder_from_algorithm(int id, const OSSL_ALGORITHM *algodef, in ossl_decoder_from_algorithm() argument
224 const OSSL_DISPATCH *fns = algodef->implementation; in ossl_decoder_from_algorithm()
230 if ((decoder->base.name = ossl_algorithm_get1_first_name(algodef)) == NULL) { in ossl_decoder_from_algorithm()
234 decoder->base.algodef = algodef; in ossl_decoder_from_algorithm()
236 = ossl_parse_property(libctx, algodef->property_definition)) == NULL) { in ossl_decoder_from_algorithm()
314 static void *construct_decoder(const OSSL_ALGORITHM *algodef, in construct_decoder() argument
326 const char *names = algodef->algorithm_names; in construct_decoder()
331 method = ossl_decoder_from_algorithm(id, algodef, prov); in construct_decoder()
516 return decoder->base.algodef in OSSL_DECODER_get0_properties()
[all...]
H A Dencoder_meth.c220 static void *encoder_from_algorithm(int id, const OSSL_ALGORITHM *algodef, in encoder_from_algorithm() argument
224 const OSSL_DISPATCH *fns = algodef->implementation; in encoder_from_algorithm()
230 if ((encoder->base.name = ossl_algorithm_get1_first_name(algodef)) == NULL) { in encoder_from_algorithm()
234 encoder->base.algodef = algodef; in encoder_from_algorithm()
236 = ossl_parse_property(libctx, algodef->property_definition)) == NULL) { in encoder_from_algorithm()
324 static void *construct_encoder(const OSSL_ALGORITHM *algodef, in construct_encoder() argument
336 const char *names = algodef->algorithm_names; in construct_encoder()
341 method = encoder_from_algorithm(id, algodef, prov); in construct_encoder()
525 return encoder->base.algodef in OSSL_ENCODER_get0_properties()
[all...]
/third_party/openssl/crypto/encode_decode/
H A Ddecoder_meth.c220 void *ossl_decoder_from_algorithm(int id, const OSSL_ALGORITHM *algodef, in ossl_decoder_from_algorithm() argument
224 const OSSL_DISPATCH *fns = algodef->implementation; in ossl_decoder_from_algorithm()
230 if ((decoder->base.name = ossl_algorithm_get1_first_name(algodef)) == NULL) { in ossl_decoder_from_algorithm()
234 decoder->base.algodef = algodef; in ossl_decoder_from_algorithm()
236 = ossl_parse_property(libctx, algodef->property_definition)) == NULL) { in ossl_decoder_from_algorithm()
314 static void *construct_decoder(const OSSL_ALGORITHM *algodef, in construct_decoder() argument
326 const char *names = algodef->algorithm_names; in construct_decoder()
331 method = ossl_decoder_from_algorithm(id, algodef, prov); in construct_decoder()
516 return decoder->base.algodef in OSSL_DECODER_get0_properties()
[all...]
H A Dencoder_meth.c220 static void *encoder_from_algorithm(int id, const OSSL_ALGORITHM *algodef, in encoder_from_algorithm() argument
224 const OSSL_DISPATCH *fns = algodef->implementation; in encoder_from_algorithm()
230 if ((encoder->base.name = ossl_algorithm_get1_first_name(algodef)) == NULL) { in encoder_from_algorithm()
234 encoder->base.algodef = algodef; in encoder_from_algorithm()
236 = ossl_parse_property(libctx, algodef->property_definition)) == NULL) { in encoder_from_algorithm()
324 static void *construct_encoder(const OSSL_ALGORITHM *algodef, in construct_encoder() argument
336 const char *names = algodef->algorithm_names; in construct_encoder()
341 method = encoder_from_algorithm(id, algodef, prov); in construct_encoder()
525 return encoder->base.algodef in OSSL_ENCODER_get0_properties()
[all...]
/third_party/node/deps/openssl/openssl/crypto/evp/
H A Devp_fetch.c219 static void *construct_evp_method(const OSSL_ALGORITHM *algodef, in construct_evp_method() argument
232 const char *names = algodef->algorithm_names; in construct_evp_method()
239 method = methdata->method_from_algorithm(name_id, algodef, prov); in construct_evp_method()
265 const OSSL_ALGORITHM *algodef, in inner_evp_generic_fetch()
399 const OSSL_ALGORITHM *algodef, in evp_generic_fetch()
426 const OSSL_ALGORITHM *algodef, in evp_generic_fetch_by_number()
452 const OSSL_ALGORITHM *algodef, in evp_generic_fetch_from_prov()
657 const OSSL_ALGORITHM *algodef, in evp_generic_do_all()
260 inner_evp_generic_fetch(struct evp_method_data_st *methdata, OSSL_PROVIDER *prov, int operation_id, int name_id, const char *name, const char *properties, void *(*new_method)(int name_id, const OSSL_ALGORITHM *algodef, OSSL_PROVIDER *prov), int (*up_ref_method)(void *), void (*free_method)(void *)) inner_evp_generic_fetch() argument
396 evp_generic_fetch(OSSL_LIB_CTX *libctx, int operation_id, const char *name, const char *properties, void *(*new_method)(int name_id, const OSSL_ALGORITHM *algodef, OSSL_PROVIDER *prov), int (*up_ref_method)(void *), void (*free_method)(void *)) evp_generic_fetch() argument
423 evp_generic_fetch_by_number(OSSL_LIB_CTX *libctx, int operation_id, int name_id, const char *properties, void *(*new_method)(int name_id, const OSSL_ALGORITHM *algodef, OSSL_PROVIDER *prov), int (*up_ref_method)(void *), void (*free_method)(void *)) evp_generic_fetch_by_number() argument
449 evp_generic_fetch_from_prov(OSSL_PROVIDER *prov, int operation_id, const char *name, const char *properties, void *(*new_method)(int name_id, const OSSL_ALGORITHM *algodef, OSSL_PROVIDER *prov), int (*up_ref_method)(void *), void (*free_method)(void *)) evp_generic_fetch_from_prov() argument
653 evp_generic_do_all(OSSL_LIB_CTX *libctx, int operation_id, void (*user_fn)(void *method, void *arg), void *user_arg, void *(*new_method)(int name_id, const OSSL_ALGORITHM *algodef, OSSL_PROVIDER *prov), int (*up_ref_method)(void *), void (*free_method)(void *)) evp_generic_do_all() argument
H A Dkdf_meth.c60 const OSSL_ALGORITHM *algodef, in evp_kdf_from_algorithm()
63 const OSSL_DISPATCH *fns = algodef->implementation; in evp_kdf_from_algorithm()
72 if ((kdf->type_name = ossl_algorithm_get1_first_name(algodef)) == NULL) { in evp_kdf_from_algorithm()
76 kdf->description = algodef->algorithm_description; in evp_kdf_from_algorithm()
59 evp_kdf_from_algorithm(int name_id, const OSSL_ALGORITHM *algodef, OSSL_PROVIDER *prov) evp_kdf_from_algorithm() argument
H A Dmac_meth.c61 const OSSL_ALGORITHM *algodef, in evp_mac_from_algorithm()
64 const OSSL_DISPATCH *fns = algodef->implementation; in evp_mac_from_algorithm()
73 if ((mac->type_name = ossl_algorithm_get1_first_name(algodef)) == NULL) { in evp_mac_from_algorithm()
77 mac->description = algodef->algorithm_description; in evp_mac_from_algorithm()
60 evp_mac_from_algorithm(int name_id, const OSSL_ALGORITHM *algodef, OSSL_PROVIDER *prov) evp_mac_from_algorithm() argument
H A Devp_local.h269 const OSSL_ALGORITHM *algodef,
276 const OSSL_ALGORITHM *algodef,
283 const OSSL_ALGORITHM *algodef,
294 const OSSL_ALGORITHM *algodef,
H A Dexchange.c44 const OSSL_ALGORITHM *algodef, in evp_keyexch_from_algorithm()
47 const OSSL_DISPATCH *fns = algodef->implementation; in evp_keyexch_from_algorithm()
57 if ((exchange->type_name = ossl_algorithm_get1_first_name(algodef)) == NULL) in evp_keyexch_from_algorithm()
59 exchange->description = algodef->algorithm_description; in evp_keyexch_from_algorithm()
43 evp_keyexch_from_algorithm(int name_id, const OSSL_ALGORITHM *algodef, OSSL_PROVIDER *prov) evp_keyexch_from_algorithm() argument
H A Dkem.c259 static void *evp_kem_from_algorithm(int name_id, const OSSL_ALGORITHM *algodef, in evp_kem_from_algorithm() argument
262 const OSSL_DISPATCH *fns = algodef->implementation; in evp_kem_from_algorithm()
273 if ((kem->type_name = ossl_algorithm_get1_first_name(algodef)) == NULL) in evp_kem_from_algorithm()
275 kem->description = algodef->algorithm_description; in evp_kem_from_algorithm()
H A Dkeymgmt_meth.c37 const OSSL_ALGORITHM *algodef, in keymgmt_from_algorithm()
40 const OSSL_DISPATCH *fns = algodef->implementation; in keymgmt_from_algorithm()
50 if ((keymgmt->type_name = ossl_algorithm_get1_first_name(algodef)) == NULL) { in keymgmt_from_algorithm()
54 keymgmt->description = algodef->algorithm_description; in keymgmt_from_algorithm()
36 keymgmt_from_algorithm(int name_id, const OSSL_ALGORITHM *algodef, OSSL_PROVIDER *prov) keymgmt_from_algorithm() argument
H A Dasymcipher.c325 const OSSL_ALGORITHM *algodef, in evp_asym_cipher_from_algorithm()
328 const OSSL_DISPATCH *fns = algodef->implementation; in evp_asym_cipher_from_algorithm()
339 if ((cipher->type_name = ossl_algorithm_get1_first_name(algodef)) == NULL) in evp_asym_cipher_from_algorithm()
341 cipher->description = algodef->algorithm_description; in evp_asym_cipher_from_algorithm()
324 evp_asym_cipher_from_algorithm(int name_id, const OSSL_ALGORITHM *algodef, OSSL_PROVIDER *prov) evp_asym_cipher_from_algorithm() argument
H A Devp_rand.c116 const OSSL_ALGORITHM *algodef, in evp_rand_from_algorithm()
119 const OSSL_DISPATCH *fns = algodef->implementation; in evp_rand_from_algorithm()
131 if ((rand->type_name = ossl_algorithm_get1_first_name(algodef)) == NULL) { in evp_rand_from_algorithm()
135 rand->description = algodef->algorithm_description; in evp_rand_from_algorithm()
115 evp_rand_from_algorithm(int name_id, const OSSL_ALGORITHM *algodef, OSSL_PROVIDER *prov) evp_rand_from_algorithm() argument
/third_party/openssl/crypto/evp/
H A Devp_fetch.c219 static void *construct_evp_method(const OSSL_ALGORITHM *algodef, in construct_evp_method() argument
232 const char *names = algodef->algorithm_names; in construct_evp_method()
239 method = methdata->method_from_algorithm(name_id, algodef, prov); in construct_evp_method()
265 const OSSL_ALGORITHM *algodef, in inner_evp_generic_fetch()
386 const OSSL_ALGORITHM *algodef, in evp_generic_fetch()
413 const OSSL_ALGORITHM *algodef, in evp_generic_fetch_by_number()
439 const OSSL_ALGORITHM *algodef, in evp_generic_fetch_from_prov()
644 const OSSL_ALGORITHM *algodef, in evp_generic_do_all()
260 inner_evp_generic_fetch(struct evp_method_data_st *methdata, OSSL_PROVIDER *prov, int operation_id, int name_id, const char *name, const char *properties, void *(*new_method)(int name_id, const OSSL_ALGORITHM *algodef, OSSL_PROVIDER *prov), int (*up_ref_method)(void *), void (*free_method)(void *)) inner_evp_generic_fetch() argument
383 evp_generic_fetch(OSSL_LIB_CTX *libctx, int operation_id, const char *name, const char *properties, void *(*new_method)(int name_id, const OSSL_ALGORITHM *algodef, OSSL_PROVIDER *prov), int (*up_ref_method)(void *), void (*free_method)(void *)) evp_generic_fetch() argument
410 evp_generic_fetch_by_number(OSSL_LIB_CTX *libctx, int operation_id, int name_id, const char *properties, void *(*new_method)(int name_id, const OSSL_ALGORITHM *algodef, OSSL_PROVIDER *prov), int (*up_ref_method)(void *), void (*free_method)(void *)) evp_generic_fetch_by_number() argument
436 evp_generic_fetch_from_prov(OSSL_PROVIDER *prov, int operation_id, const char *name, const char *properties, void *(*new_method)(int name_id, const OSSL_ALGORITHM *algodef, OSSL_PROVIDER *prov), int (*up_ref_method)(void *), void (*free_method)(void *)) evp_generic_fetch_from_prov() argument
640 evp_generic_do_all(OSSL_LIB_CTX *libctx, int operation_id, void (*user_fn)(void *method, void *arg), void *user_arg, void *(*new_method)(int name_id, const OSSL_ALGORITHM *algodef, OSSL_PROVIDER *prov), int (*up_ref_method)(void *), void (*free_method)(void *)) evp_generic_do_all() argument
H A Dkdf_meth.c60 const OSSL_ALGORITHM *algodef, in evp_kdf_from_algorithm()
63 const OSSL_DISPATCH *fns = algodef->implementation; in evp_kdf_from_algorithm()
72 if ((kdf->type_name = ossl_algorithm_get1_first_name(algodef)) == NULL) { in evp_kdf_from_algorithm()
76 kdf->description = algodef->algorithm_description; in evp_kdf_from_algorithm()
59 evp_kdf_from_algorithm(int name_id, const OSSL_ALGORITHM *algodef, OSSL_PROVIDER *prov) evp_kdf_from_algorithm() argument
H A Dmac_meth.c61 const OSSL_ALGORITHM *algodef, in evp_mac_from_algorithm()
64 const OSSL_DISPATCH *fns = algodef->implementation; in evp_mac_from_algorithm()
73 if ((mac->type_name = ossl_algorithm_get1_first_name(algodef)) == NULL) { in evp_mac_from_algorithm()
77 mac->description = algodef->algorithm_description; in evp_mac_from_algorithm()
60 evp_mac_from_algorithm(int name_id, const OSSL_ALGORITHM *algodef, OSSL_PROVIDER *prov) evp_mac_from_algorithm() argument
H A Devp_local.h269 const OSSL_ALGORITHM *algodef,
276 const OSSL_ALGORITHM *algodef,
283 const OSSL_ALGORITHM *algodef,
294 const OSSL_ALGORITHM *algodef,
H A Dasymcipher.c325 const OSSL_ALGORITHM *algodef, in evp_asym_cipher_from_algorithm()
328 const OSSL_DISPATCH *fns = algodef->implementation; in evp_asym_cipher_from_algorithm()
339 if ((cipher->type_name = ossl_algorithm_get1_first_name(algodef)) == NULL) in evp_asym_cipher_from_algorithm()
341 cipher->description = algodef->algorithm_description; in evp_asym_cipher_from_algorithm()
324 evp_asym_cipher_from_algorithm(int name_id, const OSSL_ALGORITHM *algodef, OSSL_PROVIDER *prov) evp_asym_cipher_from_algorithm() argument
H A Dkeymgmt_meth.c37 const OSSL_ALGORITHM *algodef, in keymgmt_from_algorithm()
40 const OSSL_DISPATCH *fns = algodef->implementation; in keymgmt_from_algorithm()
50 if ((keymgmt->type_name = ossl_algorithm_get1_first_name(algodef)) == NULL) { in keymgmt_from_algorithm()
54 keymgmt->description = algodef->algorithm_description; in keymgmt_from_algorithm()
36 keymgmt_from_algorithm(int name_id, const OSSL_ALGORITHM *algodef, OSSL_PROVIDER *prov) keymgmt_from_algorithm() argument
H A Dexchange.c44 const OSSL_ALGORITHM *algodef, in evp_keyexch_from_algorithm()
47 const OSSL_DISPATCH *fns = algodef->implementation; in evp_keyexch_from_algorithm()
57 if ((exchange->type_name = ossl_algorithm_get1_first_name(algodef)) == NULL) in evp_keyexch_from_algorithm()
59 exchange->description = algodef->algorithm_description; in evp_keyexch_from_algorithm()
43 evp_keyexch_from_algorithm(int name_id, const OSSL_ALGORITHM *algodef, OSSL_PROVIDER *prov) evp_keyexch_from_algorithm() argument
H A Dkem.c259 static void *evp_kem_from_algorithm(int name_id, const OSSL_ALGORITHM *algodef, in evp_kem_from_algorithm() argument
262 const OSSL_DISPATCH *fns = algodef->implementation; in evp_kem_from_algorithm()
273 if ((kem->type_name = ossl_algorithm_get1_first_name(algodef)) == NULL) in evp_kem_from_algorithm()
275 kem->description = algodef->algorithm_description; in evp_kem_from_algorithm()
/third_party/node/deps/openssl/openssl/crypto/store/
H A Dstore_meth.c195 static void *loader_from_algorithm(int scheme_id, const OSSL_ALGORITHM *algodef, in loader_from_algorithm() argument
199 const OSSL_DISPATCH *fns = algodef->implementation; in loader_from_algorithm()
204 loader->propdef = algodef->property_definition; in loader_from_algorithm()
205 loader->description = algodef->algorithm_description; in loader_from_algorithm()
262 static void *construct_loader(const OSSL_ALGORITHM *algodef, in construct_loader() argument
274 const char *scheme = algodef->algorithm_names; in construct_loader()
279 method = loader_from_algorithm(id, algodef, prov); in construct_loader()
/third_party/openssl/crypto/store/
H A Dstore_meth.c195 static void *loader_from_algorithm(int scheme_id, const OSSL_ALGORITHM *algodef, in loader_from_algorithm() argument
199 const OSSL_DISPATCH *fns = algodef->implementation; in loader_from_algorithm()
204 loader->propdef = algodef->property_definition; in loader_from_algorithm()
205 loader->description = algodef->algorithm_description; in loader_from_algorithm()
262 static void *construct_loader(const OSSL_ALGORITHM *algodef, in construct_loader() argument
274 const char *scheme = algodef->algorithm_names; in construct_loader()
279 method = loader_from_algorithm(id, algodef, prov); in construct_loader()
/third_party/node/deps/openssl/openssl/include/crypto/
H A Ddecoder.h26 void *ossl_decoder_from_algorithm(int id, const OSSL_ALGORITHM *algodef,
/third_party/openssl/include/crypto/
H A Ddecoder.h26 void *ossl_decoder_from_algorithm(int id, const OSSL_ALGORITHM *algodef,

Completed in 20 milliseconds

12