Home
last modified time | relevance | path

Searched defs:selection (Results 1 – 25 of 60) sorted by relevance

123

/openssl/crypto/evp/
H A Dkeymgmt_lib.c87 int evp_keymgmt_util_export(const EVP_PKEY *pk, int selection, in evp_keymgmt_util_export()
97 int selection) in evp_keymgmt_util_export_to_provider()
234 int selection) in evp_keymgmt_util_find_operation_cache()
257 void *keydata, int selection) in evp_keymgmt_util_cache_keydata()
316 int selection, const OSSL_PARAM params[]) in evp_keymgmt_util_fromdata()
329 int evp_keymgmt_util_has(EVP_PKEY *pk, int selection) in evp_keymgmt_util_has()
351 int evp_keymgmt_util_match(EVP_PKEY *pk1, EVP_PKEY *pk2, int selection) in evp_keymgmt_util_match()
445 int evp_keymgmt_util_copy(EVP_PKEY *to, EVP_PKEY *from, int selection) in evp_keymgmt_util_copy()
H A Dkeymgmt_meth.c383 void *evp_keymgmt_gen_init(const EVP_KEYMGMT *keymgmt, int selection, in evp_keymgmt_gen_init()
502 int evp_keymgmt_has(const EVP_KEYMGMT *keymgmt, void *keydata, int selection) in evp_keymgmt_has()
509 int selection, int checktype) in evp_keymgmt_validate()
519 int selection) in evp_keymgmt_match()
528 int selection, const OSSL_PARAM params[]) in evp_keymgmt_import()
536 int selection) in evp_keymgmt_import_types()
548 int selection, OSSL_CALLBACK *param_cb, void *cbarg) in evp_keymgmt_export()
556 int selection) in evp_keymgmt_export_types()
568 int selection) in evp_keymgmt_dup()
H A Dpmeth_gn.c363 int EVP_PKEY_fromdata(EVP_PKEY_CTX *ctx, EVP_PKEY **ppkey, int selection, in EVP_PKEY_fromdata()
397 const OSSL_PARAM *EVP_PKEY_fromdata_settable(EVP_PKEY_CTX *ctx, int selection) in EVP_PKEY_fromdata_settable()
415 int EVP_PKEY_todata(const EVP_PKEY *pkey, int selection, OSSL_PARAM **params) in EVP_PKEY_todata()
438 int EVP_PKEY_export(const EVP_PKEY *pkey, int selection, in EVP_PKEY_export()
H A Devp_pkey.c74 int selection; in EVP_PKCS82PKEY_ex() local
135 int selection = OSSL_KEYMGMT_SELECT_ALL; in EVP_PKEY2PKCS8() local
/openssl/providers/implementations/keymgmt/
H A Dtemplate_kmgmt.c68 int selection; member
96 static int template_has(const void *keydata, int selection) in template_has()
108 static int template_match(const void *keydata1, const void *keydata2, int selection) in template_match()
146 static int template_export(void *key, int selection, OSSL_CALLBACK *param_cb, in template_export()
215 static int template_import(void *key, int selection, const OSSL_PARAM params[]) in template_import()
243 static const OSSL_PARAM *template_imexport_types(int selection) in template_imexport_types()
333 static void *template_gen_init(void *provctx, int selection, in template_gen_init()
394 static void *template_dup(const void *vsrckey, int selection) in template_dup()
H A Drsa_kmgmt.c115 static int rsa_has(const void *keydata, int selection) in rsa_has()
173 static int rsa_import(void *keydata, int selection, const OSSL_PARAM params[]) in rsa_import()
203 static int rsa_export(void *keydata, int selection, in rsa_export()
313 static const OSSL_PARAM *rsa_imexport_types(int selection) in rsa_imexport_types()
320 static const OSSL_PARAM *rsa_import_types(int selection) in rsa_import_types()
325 static const OSSL_PARAM *rsa_export_types(int selection) in rsa_export_types()
392 static int rsa_validate(const void *keydata, int selection, int checktype) in rsa_validate()
450 static void *gen_init(void *provctx, int selection, int rsa_type, in gen_init()
486 static void *rsa_gen_init(void *provctx, int selection, in rsa_gen_init()
492 static void *rsapss_gen_init(void *provctx, int selection, in rsapss_gen_init()
[all …]
H A Dmac_legacy_kmgmt.c58 int selection; member
136 static int mac_has(const void *keydata, int selection) in mac_has()
155 static int mac_match(const void *keydata1, const void *keydata2, int selection) in mac_match()
225 static int mac_import(void *keydata, int selection, const OSSL_PARAM params[]) in mac_import()
267 static int mac_export(void *keydata, int selection, OSSL_CALLBACK *param_cb, in mac_export()
305 static const OSSL_PARAM *mac_imexport_types(int selection) in mac_imexport_types()
319 static const OSSL_PARAM *cmac_imexport_types(int selection) in cmac_imexport_types()
375 static void *mac_gen_init_common(void *provctx, int selection) in mac_gen_init_common()
390 static void *mac_gen_init(void *provctx, int selection, in mac_gen_init()
402 static void *cmac_gen_init(void *provctx, int selection, in cmac_gen_init()
H A Ddh_kmgmt.c58 int selection; member
130 static int dh_has(const void *keydata, int selection) in dh_has()
215 static int dh_export(void *keydata, int selection, OSSL_CALLBACK *param_cb, in dh_export()
294 static const OSSL_PARAM *dh_imexport_types(int selection) in dh_imexport_types()
305 static const OSSL_PARAM *dh_import_types(int selection) in dh_import_types()
310 static const OSSL_PARAM *dh_export_types(int selection) in dh_export_types()
412 static int dh_validate(const void *keydata, int selection, int checktype) in dh_validate()
447 static void *dh_gen_init_base(void *provctx, int selection, in dh_gen_init_base()
488 static void *dh_gen_init(void *provctx, int selection, in dh_gen_init()
494 static void *dhx_gen_init(void *provctx, int selection, in dhx_gen_init()
[all …]
H A Decx_kmgmt.c83 int selection; member
127 static int ecx_has(const void *keydata, int selection) in ecx_has()
235 static int ecx_export(void *keydata, int selection, OSSL_CALLBACK *param_cb, in ecx_export()
279 static const OSSL_PARAM *ecx_imexport_types(int selection) in ecx_imexport_types()
489 static void *ecx_gen_init(void *provctx, int selection, in ecx_gen_init()
519 static void *x25519_gen_init(void *provctx, int selection, in x25519_gen_init()
525 static void *x448_gen_init(void *provctx, int selection, in x448_gen_init()
531 static void *ed25519_gen_init(void *provctx, int selection, in ed25519_gen_init()
537 static void *ed448_gen_init(void *provctx, int selection, in ed448_gen_init()
865 static void *ecx_dup(const void *keydata_from, int selection) in ecx_dup()
[all …]
H A Ddsa_kmgmt.c59 int selection; member
133 static int dsa_has(const void *keydata, int selection) in dsa_has()
152 static int dsa_match(const void *keydata1, const void *keydata2, int selection) in dsa_match()
194 static int dsa_import(void *keydata, int selection, const OSSL_PARAM params[]) in dsa_import()
218 static int dsa_export(void *keydata, int selection, OSSL_CALLBACK *param_cb, in dsa_export()
294 static const OSSL_PARAM *dsa_imexport_types(int selection) in dsa_imexport_types()
305 static const OSSL_PARAM *dsa_import_types(int selection) in dsa_import_types()
310 static const OSSL_PARAM *dsa_export_types(int selection) in dsa_export_types()
381 static int dsa_validate(const void *keydata, int selection, int checktype) in dsa_validate()
408 static void *dsa_gen_init(void *provctx, int selection, in dsa_gen_init()
[all …]
H A Dec_kmgmt.c307 int ec_has(const void *keydata, int selection) in ec_has()
452 int ec_export(void *keydata, int selection, OSSL_CALLBACK *param_cb, in ec_export()
560 const OSSL_PARAM *ec_imexport_types(int selection) in ec_imexport_types()
576 const OSSL_PARAM *ec_import_types(int selection) in ec_import_types()
582 const OSSL_PARAM *ec_export_types(int selection) in ec_export_types()
899 int sm2_validate(const void *keydata, int selection, int checktype) in sm2_validate()
938 int ec_validate(const void *keydata, int selection, int checktype) in ec_validate()
991 int selection; member
999 static void *ec_gen_init(void *provctx, int selection, in ec_gen_init()
1023 static void *sm2_gen_init(void *provctx, int selection, in sm2_gen_init()
[all …]
H A Dkdf_legacy_kmgmt.c92 static int kdf_has(const void *keydata, int selection) in kdf_has()
/openssl/test/
H A Dendecoder_legacy_test.c304 EVP_PKEY *provided_pkey, int selection, in test_protected_PEM()
372 EVP_PKEY *provided_pkey, int selection, in test_unprotected_PEM()
437 EVP_PKEY *provided_pkey, int selection, in test_DER()
530 int selection = OSSL_KEYMGMT_SELECT_ALL; in test_key() local
548 int selection = in test_key() local
568 int selection = OSSL_KEYMGMT_SELECT_ALL_PARAMETERS; in test_key() local
587 int selection = in test_key() local
605 int selection = OSSL_KEYMGMT_SELECT_ALL; in test_key() local
623 int selection = in test_key() local
643 int selection = OSSL_KEYMGMT_SELECT_ALL_PARAMETERS; in test_key() local
[all …]
H A Dfake_rsaprov.c36 int selection; member
66 static int fake_rsa_keymgmt_has(const void *key, int selection) in fake_rsa_keymgmt_has()
83 static int fake_rsa_keymgmt_import(void *keydata, int selection, in fake_rsa_keymgmt_import()
167 static int fake_rsa_keymgmt_export(void *keydata, int selection, in fake_rsa_keymgmt_export()
196 static const OSSL_PARAM *fake_rsa_keymgmt_imptypes(int selection) in fake_rsa_keymgmt_imptypes()
210 static const OSSL_PARAM *fake_rsa_keymgmt_exptypes(int selection) in fake_rsa_keymgmt_exptypes()
235 static void *fake_rsa_gen_init(void *provctx, int selection, in fake_rsa_gen_init()
/openssl/demos/encode/
H A Dec_encode.c34 int selection = 0; in load_key() local
104 int selection; in store_key() local
H A Drsa_encode.c34 int selection = 0; in load_key() local
104 int selection; in store_key() local
/openssl/providers/implementations/encode_decode/
H A Dencode_key2text.c217 static int dh_to_text(BIO *out, const void *key, int selection) in dh_to_text()
293 static int dsa_to_text(BIO *out, const void *key, int selection) in dsa_to_text()
492 static int ec_to_text(BIO *out, const void *key, int selection) in ec_to_text()
571 static int ecx_to_text(BIO *out, const void *key, int selection) in ecx_to_text()
631 static int rsa_to_text(BIO *out, const void *key, int selection) in rsa_to_text()
797 static int key2text_encode(void *vctx, const void *key, int selection, in key2text_encode()
800 int selection), in key2text_encode()
H A Ddecode_msblob2key.c60 int selection; member
82 static int msblob2key_does_selection(void *provctx, int selection) in msblob2key_does_selection()
94 static int msblob2key_decode(void *vctx, OSSL_CORE_BIO *cin, int selection, in msblob2key_decode()
224 int selection = ctx->selection; in msblob2key_export_object() local
H A Dencode_key2blob.c55 static int key2blob_check_selection(int selection, int selection_mask) in key2blob_check_selection()
88 static int key2blob_encode(void *vctx, const void *key, int selection, in key2blob_encode()
H A Ddecode_pvk2key.c64 int selection; member
108 static int pvk2key_does_selection(void *provctx, int selection) in pvk2key_does_selection()
119 static int pvk2key_decode(void *vctx, OSSL_CORE_BIO *cin, int selection, in pvk2key_decode()
220 int selection = ctx->selection; in pvk2key_export_object() local
H A Dencode_key2ms.c112 static int key2ms_does_selection(void *vctx, int selection) in key2ms_does_selection()
128 static int key2msblob_encode(void *vctx, const void *key, int selection, in key2msblob_encode()
150 static int key2pvk_encode(void *vctx, const void *key, int selection, in key2pvk_encode()
H A Dendecoder_common.c61 int selection, const OSSL_PARAM params[]) in ossl_prov_import_key()
/openssl/providers/implementations/storemgmt/
H A Dfile_store_any2obj.c83 static int der2obj_decode(void *provctx, OSSL_CORE_BIO *cin, int selection, in der2obj_decode()
109 static int msblob2obj_decode(void *provctx, OSSL_CORE_BIO *cin, int selection, in msblob2obj_decode()
178 static int pvk2obj_decode(void *provctx, OSSL_CORE_BIO *cin, int selection, in pvk2obj_decode()
/openssl/crypto/encode_decode/
H A Dencoder_pkey.c159 int selection; member
227 int selection, in ossl_encoder_ctx_setup_for_pkey()
341 int selection, in OSSL_ENCODER_CTX_new_for_pkey()
/openssl/crypto/asn1/
H A Di2d_evp.c33 static int i2d_provided(const EVP_PKEY *a, int selection, in i2d_provided()

Completed in 87 milliseconds

123