Searched refs:param_priv_key (Results 1 – 6 of 6) sorted by relevance
/openssl/crypto/dsa/ |
H A D | dsa_backend.c | 33 const OSSL_PARAM *param_priv_key = NULL, *param_pub_key; in ossl_dsa_key_fromdata() local 40 param_priv_key = in ossl_dsa_key_fromdata() 47 if (param_priv_key == NULL && param_pub_key == NULL) in ossl_dsa_key_fromdata() 52 if (param_priv_key != NULL && !OSSL_PARAM_get_BN(param_priv_key, &priv_key)) in ossl_dsa_key_fromdata()
|
/openssl/crypto/ec/ |
H A D | ecx_backend.c | 59 const OSSL_PARAM *param_priv_key = NULL, *param_pub_key; in ossl_ecx_key_fromdata() local 67 param_priv_key = in ossl_ecx_key_fromdata() 70 if (param_pub_key == NULL && param_priv_key == NULL) in ossl_ecx_key_fromdata() 73 if (param_priv_key != NULL) { in ossl_ecx_key_fromdata() 74 if (!OSSL_PARAM_get_octet_string(param_priv_key, in ossl_ecx_key_fromdata()
|
H A D | ec_backend.c | 398 const OSSL_PARAM *param_priv_key = NULL, *param_pub_key = NULL; in ossl_ec_key_fromdata() local 414 param_priv_key = in ossl_ec_key_fromdata() 428 if (param_priv_key != NULL && include_private) { in ossl_ec_key_fromdata() 477 if (!OSSL_PARAM_get_BN(param_priv_key, &priv_key)) in ossl_ec_key_fromdata()
|
/openssl/crypto/dh/ |
H A D | dh_backend.c | 62 const OSSL_PARAM *param_priv_key, *param_pub_key; in ossl_dh_key_fromdata() local 68 param_priv_key = OSSL_PARAM_locate_const(params, OSSL_PKEY_PARAM_PRIV_KEY); in ossl_dh_key_fromdata() 72 && param_priv_key != NULL in ossl_dh_key_fromdata() 73 && !OSSL_PARAM_get_BN(param_priv_key, &priv_key)) in ossl_dh_key_fromdata()
|
/openssl/providers/implementations/keymgmt/ |
H A D | template_kmgmt.c | 187 const OSSL_PARAM *param_priv_key = NULL, *param_pub_key; in ossl_template_key_fromdata() local 198 param_priv_key = in ossl_template_key_fromdata() 201 if (param_pub_key == NULL && param_priv_key == NULL) in ossl_template_key_fromdata() 204 if (param_priv_key != NULL) { in ossl_template_key_fromdata()
|
/openssl/test/ |
H A D | tls-provider.c | 1002 const OSSL_PARAM *param_priv_key, *param_pub_key; in xor_import() local 1014 param_priv_key = OSSL_PARAM_locate_const(params, OSSL_PKEY_PARAM_PRIV_KEY); in xor_import() 1017 if ((param_priv_key != NULL in xor_import() 1018 && !OSSL_PARAM_get_octet_string(param_priv_key, &pprivkey, in xor_import()
|
Completed in 29 milliseconds