Searched refs:param_priv_key (Results 1 – 5 of 5) sorted by relevance
/openssl-master/crypto/ec/ |
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 && !OSSL_PARAM_get_octet_string(param_priv_key, in ossl_ecx_key_fromdata() 87 || (param_priv_key != NULL && privkeylen != ecx->keylen)) in ossl_ecx_key_fromdata()
|
A D | ec_backend.c | 393 const OSSL_PARAM *param_priv_key = NULL, *param_pub_key = NULL; in ossl_ec_key_fromdata() local 409 param_priv_key = in ossl_ec_key_fromdata() 423 if (param_priv_key != NULL && include_private) { in ossl_ec_key_fromdata() 472 if (!OSSL_PARAM_get_BN(param_priv_key, &priv_key)) in ossl_ec_key_fromdata()
|
/openssl-master/crypto/dsa/ |
A D | dsa_backend.c | 32 const OSSL_PARAM *param_priv_key, *param_pub_key; in ossl_dsa_key_fromdata() local 38 param_priv_key = in ossl_dsa_key_fromdata() 44 if (param_priv_key == NULL && param_pub_key == NULL) in ossl_dsa_key_fromdata() 49 if (param_priv_key != NULL && !OSSL_PARAM_get_BN(param_priv_key, &priv_key)) in ossl_dsa_key_fromdata()
|
/openssl-master/crypto/dh/ |
A D | dh_backend.c | 68 const OSSL_PARAM *param_priv_key, *param_pub_key; in ossl_dh_key_fromdata() local 74 param_priv_key = OSSL_PARAM_locate_const(params, OSSL_PKEY_PARAM_PRIV_KEY); in ossl_dh_key_fromdata() 77 if ((param_priv_key != NULL in ossl_dh_key_fromdata() 78 && !OSSL_PARAM_get_BN(param_priv_key, &priv_key)) in ossl_dh_key_fromdata()
|
/openssl-master/test/ |
A D | tls-provider.c | 661 const OSSL_PARAM *param_priv_key, *param_pub_key; in xor_import() local 673 param_priv_key = OSSL_PARAM_locate_const(params, OSSL_PKEY_PARAM_PRIV_KEY); in xor_import() 676 if ((param_priv_key != NULL in xor_import() 677 && !OSSL_PARAM_get_octet_string(param_priv_key, &pprivkey, in xor_import()
|
Completed in 9 milliseconds