Home
last modified time | relevance | path

Searched refs:OSSL_PARAM_BLD (Results 1 – 25 of 44) sorted by relevance

12

/openssl/include/openssl/
H A Dparam_build.h22 OSSL_PARAM_BLD *OSSL_PARAM_BLD_new(void);
23 OSSL_PARAM *OSSL_PARAM_BLD_to_param(OSSL_PARAM_BLD *bld);
24 void OSSL_PARAM_BLD_free(OSSL_PARAM_BLD *bld);
27 int OSSL_PARAM_BLD_push_uint(OSSL_PARAM_BLD *bld, const char *key,
29 int OSSL_PARAM_BLD_push_long(OSSL_PARAM_BLD *bld, const char *key,
31 int OSSL_PARAM_BLD_push_ulong(OSSL_PARAM_BLD *bld, const char *key,
33 int OSSL_PARAM_BLD_push_int32(OSSL_PARAM_BLD *bld, const char *key,
35 int OSSL_PARAM_BLD_push_uint32(OSSL_PARAM_BLD *bld, const char *key,
37 int OSSL_PARAM_BLD_push_int64(OSSL_PARAM_BLD *bld, const char *key,
39 int OSSL_PARAM_BLD_push_uint64(OSSL_PARAM_BLD *bld, const char *key,
[all …]
H A Dtypes.h224 typedef struct ossl_param_bld_st OSSL_PARAM_BLD; typedef
/openssl/include/internal/
H A Dparam_build_set.h28 int ossl_param_build_set_int(OSSL_PARAM_BLD *bld, OSSL_PARAM *p,
30 int ossl_param_build_set_long(OSSL_PARAM_BLD *bld, OSSL_PARAM *p,
32 int ossl_param_build_set_utf8_string(OSSL_PARAM_BLD *bld, OSSL_PARAM *p,
34 int ossl_param_build_set_octet_string(OSSL_PARAM_BLD *bld, OSSL_PARAM *p,
38 int ossl_param_build_set_bn(OSSL_PARAM_BLD *bld, OSSL_PARAM *p,
40 int ossl_param_build_set_bn_pad(OSSL_PARAM_BLD *bld, OSSL_PARAM *p,
42 int ossl_param_build_set_signed_bn(OSSL_PARAM_BLD *bld, OSSL_PARAM *p,
44 int ossl_param_build_set_signed_bn_pad(OSSL_PARAM_BLD *bld, OSSL_PARAM *p,
47 int ossl_param_build_set_multi_key_bn(OSSL_PARAM_BLD *bld, OSSL_PARAM *p,
H A Dffc.h195 int ossl_ffc_params_todata(const FFC_PARAMS *ffc, OSSL_PARAM_BLD *tmpl,
/openssl/crypto/
H A Dparam_build.c76 static int param_push_num(OSSL_PARAM_BLD *bld, const char *key, in param_push_num()
93 OSSL_PARAM_BLD *OSSL_PARAM_BLD_new(void) in OSSL_PARAM_BLD_new()
95 OSSL_PARAM_BLD *r = OPENSSL_zalloc(sizeof(OSSL_PARAM_BLD)); in OSSL_PARAM_BLD_new()
107 static void free_all_params(OSSL_PARAM_BLD *bld) in free_all_params()
115 void OSSL_PARAM_BLD_free(OSSL_PARAM_BLD *bld) in OSSL_PARAM_BLD_free()
129 int OSSL_PARAM_BLD_push_uint(OSSL_PARAM_BLD *bld, const char *key, in OSSL_PARAM_BLD_push_uint()
136 int OSSL_PARAM_BLD_push_long(OSSL_PARAM_BLD *bld, const char *key, in OSSL_PARAM_BLD_push_long()
142 int OSSL_PARAM_BLD_push_ulong(OSSL_PARAM_BLD *bld, const char *key, in OSSL_PARAM_BLD_push_ulong()
195 static int push_BN(OSSL_PARAM_BLD *bld, const char *key, in push_BN()
231 int OSSL_PARAM_BLD_push_BN(OSSL_PARAM_BLD *bld, const char *key, in OSSL_PARAM_BLD_push_BN()
[all …]
H A Dparam_build_set.c22 int ossl_param_build_set_int(OSSL_PARAM_BLD *bld, OSSL_PARAM *p, in DEFINE_SPECIAL_STACK_OF_CONST()
33 int ossl_param_build_set_long(OSSL_PARAM_BLD *bld, OSSL_PARAM *p, in ossl_param_build_set_long()
44 int ossl_param_build_set_utf8_string(OSSL_PARAM_BLD *bld, OSSL_PARAM *p, in ossl_param_build_set_utf8_string()
55 int ossl_param_build_set_octet_string(OSSL_PARAM_BLD *bld, OSSL_PARAM *p, in ossl_param_build_set_octet_string()
69 int ossl_param_build_set_bn_pad(OSSL_PARAM_BLD *bld, OSSL_PARAM *p, in ossl_param_build_set_bn_pad()
86 int ossl_param_build_set_bn(OSSL_PARAM_BLD *bld, OSSL_PARAM *p, in ossl_param_build_set_bn()
98 int ossl_param_build_set_multi_key_bn(OSSL_PARAM_BLD *bld, OSSL_PARAM *params, in ossl_param_build_set_multi_key_bn()
/openssl/doc/man3/
H A DOSSL_PARAM_BLD.pod5 OSSL_PARAM_BLD, OSSL_PARAM_BLD_new, OSSL_PARAM_BLD_to_param,
23 typedef struct OSSL_PARAM_BLD;
25 OSSL_PARAM_BLD *OSSL_PARAM_BLD_new(void);
26 OSSL_PARAM *OSSL_PARAM_BLD_to_param(OSSL_PARAM_BLD *bld);
27 void OSSL_PARAM_BLD_free(OSSL_PARAM_BLD *bld);
31 int OSSL_PARAM_BLD_push_BN(OSSL_PARAM_BLD *bld, const char *key,
33 int OSSL_PARAM_BLD_push_BN_pad(OSSL_PARAM_BLD *bld, const char *key,
38 int OSSL_PARAM_BLD_push_utf8_ptr(OSSL_PARAM_BLD *bld, const char *key,
57 OSSL_PARAM_BLD_to_param() converts a built up OSSL_PARAM_BLD structure
160 OSSL_PARAM_BLD *bld = OSSL_PARAM_BLD_new();
[all …]
H A DOSSL_PARAM_dup.pod44 L<OSSL_PARAM(3)>, L<OSSL_PARAM_BLD(3)>
/openssl/include/crypto/
H A Ddh.h36 int ossl_dh_params_todata(DH *dh, OSSL_PARAM_BLD *bld, OSSL_PARAM params[]);
37 int ossl_dh_key_todata(DH *dh, OSSL_PARAM_BLD *bld, OSSL_PARAM params[],
H A Drsa.h68 int ossl_rsa_todata(RSA *rsa, OSSL_PARAM_BLD *bld, OSSL_PARAM params[],
72 OSSL_PARAM_BLD *bld, OSSL_PARAM params[]);
H A Dec.h71 int ossl_ec_group_todata(const EC_GROUP *group, OSSL_PARAM_BLD *tmpl,
/openssl/test/
H A Dparam_build_test.c21 OSSL_PARAM_BLD *bld = OSSL_PARAM_BLD_new(); in template_public_test()
161 OSSL_PARAM_BLD *bld = NULL; in template_private_test()
309 OSSL_PARAM_BLD *bld = OSSL_PARAM_BLD_new(); in builder_limit_test()
352 OSSL_PARAM_BLD *bld = OSSL_PARAM_BLD_new(); in builder_merge_test()
353 OSSL_PARAM_BLD *bld2 = OSSL_PARAM_BLD_new(); in builder_merge_test()
H A Dendecode_test.c61 static OSSL_PARAM_BLD *bld_prime_nc = NULL;
62 static OSSL_PARAM_BLD *bld_prime = NULL;
67 static OSSL_PARAM_BLD *bld_tri_nc = NULL;
68 static OSSL_PARAM_BLD *bld_tri = NULL;
1052 static int do_create_ec_explicit_prime_params(OSSL_PARAM_BLD *bld, in do_create_ec_explicit_prime_params()
1114 static int create_ec_explicit_prime_params_namedcurve(OSSL_PARAM_BLD *bld) in create_ec_explicit_prime_params_namedcurve()
1131 static int create_ec_explicit_prime_params(OSSL_PARAM_BLD *bld) in create_ec_explicit_prime_params()
1150 static int do_create_ec_explicit_trinomial_params(OSSL_PARAM_BLD *bld, in do_create_ec_explicit_trinomial_params()
1203 static int create_ec_explicit_trinomial_params_namedcurve(OSSL_PARAM_BLD *bld) in create_ec_explicit_trinomial_params_namedcurve()
1217 static int create_ec_explicit_trinomial_params(OSSL_PARAM_BLD *bld) in create_ec_explicit_trinomial_params()
H A Devp_pkey_provided_test.c446 OSSL_PARAM_BLD *bld = NULL; in test_evp_pkey_get_bn_param_large()
507 OSSL_PARAM_BLD *bld = NULL; in test_fromdata_dh_named_group()
717 OSSL_PARAM_BLD *bld = NULL; in test_fromdata_dh_fips186_4()
1160 OSSL_PARAM_BLD *bld = NULL; in test_fromdata_ec()
1405 OSSL_PARAM_BLD *bld = NULL; in test_fromdata_dsa_fips186_4()
H A Dacvp_test.c156 OSSL_PARAM_BLD *bld = NULL; in ecdsa_create_pkey()
460 OSSL_PARAM_BLD *bld = NULL; in dsa_create_pkey()
901 OSSL_PARAM_BLD *bld = NULL; in dh_create_pkey()
1012 OSSL_PARAM_BLD *bld = NULL; in rsa_create_pkey()
1065 OSSL_PARAM_BLD *bld = NULL; in rsa_keygen_test()
/openssl/crypto/dh/
H A Ddh_backend.c97 int ossl_dh_params_todata(DH *dh, OSSL_PARAM_BLD *bld, OSSL_PARAM params[]) in ossl_dh_params_todata()
109 int ossl_dh_key_todata(DH *dh, OSSL_PARAM_BLD *bld, OSSL_PARAM params[], in ossl_dh_key_todata()
/openssl/providers/fips/
H A Dself_test_kats.c149 static int add_params(OSSL_PARAM_BLD *bld, const ST_KAT_PARAM *params, in add_params()
204 OSSL_PARAM_BLD *bld = NULL; in self_test_kdf()
372 OSSL_PARAM_BLD *bld = NULL; in self_test_ka()
444 OSSL_PARAM_BLD *bld = NULL; in self_test_sign()
538 OSSL_PARAM_BLD *keybld = NULL, *initbld = NULL; in self_test_asym_cipher()
/openssl/apps/
H A Dtestdsa.h222 OSSL_PARAM_BLD *tmpl = NULL; in get_dsa()
H A Ddhparam.c374 OSSL_PARAM_BLD *tmpl = NULL; in dsa_to_dh()
/openssl/test/helpers/
H A Dpredefined_dhparams.c22 OSSL_PARAM_BLD *tmpl = NULL; in get_dh_from_pg_bn()
/openssl/providers/implementations/keymgmt/
H A Dmac_legacy_kmgmt.c244 static int key_to_params(MAC_KEY *key, OSSL_PARAM_BLD *tmpl, in key_to_params()
277 OSSL_PARAM_BLD *tmpl; in mac_export()
H A Dec_kmgmt.c111 int key_to_params(const EC_KEY *eckey, OSSL_PARAM_BLD *tmpl, in key_to_params()
231 int otherparams_to_params(const EC_KEY *ec, OSSL_PARAM_BLD *tmpl, in otherparams_to_params()
445 OSSL_PARAM_BLD *tmpl = NULL; in ec_export()
1126 OSSL_PARAM_BLD *bld; in ec_gen_set_group_from_params()
H A Ddsa_kmgmt.c98 static int dsa_key_todata(DSA *dsa, OSSL_PARAM_BLD *bld, OSSL_PARAM params[], in dsa_key_todata()
218 OSSL_PARAM_BLD *tmpl; in dsa_export()
/openssl/crypto/rsa/
H A Drsa_backend.c123 int ossl_rsa_todata(RSA *rsa, OSSL_PARAM_BLD *bld, OSSL_PARAM params[], in DEFINE_SPECIAL_STACK_OF_CONST()
184 OSSL_PARAM_BLD *bld, OSSL_PARAM params[]) in ossl_rsa_pss_params_30_todata()
/openssl/crypto/ec/
H A Dec_backend.c156 static int ec_group_explicit_todata(const EC_GROUP *group, OSSL_PARAM_BLD *tmpl, in ec_group_explicit_todata()
288 int ossl_ec_group_todata(const EC_GROUP *group, OSSL_PARAM_BLD *tmpl, in ossl_ec_group_todata()

Completed in 110 milliseconds

12