Lines Matching refs:params

3730 	EVP_PKEY *params = NULL;  in php_openssl_generate_private_key()  local
3777 if (EVP_PKEY_paramgen(ctx, &params) <= 0) { in php_openssl_generate_private_key()
3783 ctx = EVP_PKEY_CTX_new(params, NULL); in php_openssl_generate_private_key()
3809 EVP_PKEY_free(params); in php_openssl_generate_private_key()
3875 OSSL_PARAM *params = NULL; in php_openssl_pkey_init_rsa() local
3912 params = OSSL_PARAM_BLD_to_param(bld); in php_openssl_pkey_init_rsa()
3913 if (!params) { in php_openssl_pkey_init_rsa()
3918 EVP_PKEY_fromdata(ctx, &pkey, EVP_PKEY_KEYPAIR, params) <= 0) { in php_openssl_pkey_init_rsa()
3925 OSSL_PARAM_free(params); in php_openssl_pkey_init_rsa()
4007 OSSL_PARAM *params = NULL; in php_openssl_pkey_init_dsa() local
4033 params = OSSL_PARAM_BLD_to_param(bld); in php_openssl_pkey_init_dsa()
4034 if (!params) { in php_openssl_pkey_init_dsa()
4039 EVP_PKEY_fromdata(ctx, &param_key, EVP_PKEY_KEYPAIR, params) <= 0) { in php_openssl_pkey_init_dsa()
4061 OSSL_PARAM_free(params); in php_openssl_pkey_init_dsa()
4180 OSSL_PARAM *params = NULL; in php_openssl_pkey_init_dh() local
4213 params = OSSL_PARAM_BLD_to_param(bld); in php_openssl_pkey_init_dh()
4214 if (!params) { in php_openssl_pkey_init_dh()
4219 EVP_PKEY_fromdata(ctx, &param_key, EVP_PKEY_KEYPAIR, params) <= 0) { in php_openssl_pkey_init_dh()
4241 OSSL_PARAM_free(params); in php_openssl_pkey_init_dh()
4434 OSSL_PARAM *params = NULL; in php_openssl_pkey_init_ec() local
4563 params = OSSL_PARAM_BLD_to_param(bld); in php_openssl_pkey_init_ec()
4564 if (!params) { in php_openssl_pkey_init_ec()
4570 EVP_PKEY_fromdata(ctx, &param_key, EVP_PKEY_KEYPAIR, params) <= 0) { in php_openssl_pkey_init_ec()
4585 EVP_PKEY_CTX_set_params(ctx, params) != 1 || in php_openssl_pkey_init_ec()
4596 OSSL_PARAM_free(params); in php_openssl_pkey_init_ec()