Searched refs:param_priv_key (Results 1 – 5 of 5) sorted by relevance
/freebsd/crypto/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()
|
/freebsd/crypto/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()
|
/freebsd/crypto/openssl/crypto/dh/ |
H 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() 78 && param_priv_key != NULL in ossl_dh_key_fromdata() 79 && !OSSL_PARAM_get_BN(param_priv_key, &priv_key)) in ossl_dh_key_fromdata()
|
/freebsd/crypto/openssl/test/ |
H A D | tls-provider.c | 667 const OSSL_PARAM *param_priv_key, *param_pub_key; in xor_import() 679 param_priv_key = OSSL_PARAM_locate_const(params, OSSL_PKEY_PARAM_PRIV_KEY); in xor_import() 682 if ((param_priv_key != NULL in xor_import() 683 && !OSSL_PARAM_get_octet_string(param_priv_key, &pprivkey, in xor_import() 661 const OSSL_PARAM *param_priv_key, *param_pub_key; xor_import() local
|