Lines Matching refs:params
354 OSSL_PARAM *params = NULL;
375 params = OSSL_PARAM_BLD_to_param(tmpl);
378 rv = importer(to_keydata, selection, params);
382 OSSL_PARAM_free(params);
386 static int ecx_generic_import_from(const OSSL_PARAM params[], void *vpctx,
399 if (!ossl_ecx_key_fromdata(ecx, params, 1)
424 static int x25519_import_from(const OSSL_PARAM params[], void *vpctx)
426 return ecx_generic_import_from(params, vpctx, EVP_PKEY_X25519);
478 static int x448_import_from(const OSSL_PARAM params[], void *vpctx)
480 return ecx_generic_import_from(params, vpctx, EVP_PKEY_X448);
606 static int ed25519_import_from(const OSSL_PARAM params[], void *vpctx)
608 return ecx_generic_import_from(params, vpctx, EVP_PKEY_ED25519);
659 static int ed448_import_from(const OSSL_PARAM params[], void *vpctx)
661 return ecx_generic_import_from(params, vpctx, EVP_PKEY_ED448);