| /freebsd/crypto/openssl/include/openssl/ |
| H A D | param_build.h | 22 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); 26 int OSSL_PARAM_BLD_push_int(OSSL_PARAM_BLD *bld, const char *key, int val); 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, [all …]
|
| H A D | types.h | 235 typedef struct ossl_param_bld_st OSSL_PARAM_BLD; typedef
|
| /freebsd/crypto/openssl/include/internal/ |
| H A D | param_build_set.h | 28 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 D | ffc.h | 200 int ossl_ffc_params_todata(const FFC_PARAMS *ffc, OSSL_PARAM_BLD *tmpl,
|
| /freebsd/crypto/openssl/crypto/ |
| H A D | param_build.c | 51 static OSSL_PARAM_BLD_DEF *param_push(OSSL_PARAM_BLD *bld, const char *key, in param_push() 74 static int param_push_num(OSSL_PARAM_BLD *bld, const char *key, in param_push_num() 91 OSSL_PARAM_BLD *OSSL_PARAM_BLD_new(void) in OSSL_PARAM_BLD_new() 93 OSSL_PARAM_BLD *r = OPENSSL_zalloc(sizeof(OSSL_PARAM_BLD)); in OSSL_PARAM_BLD_new() 105 static void free_all_params(OSSL_PARAM_BLD *bld) in free_all_params() 113 void OSSL_PARAM_BLD_free(OSSL_PARAM_BLD *bld) in OSSL_PARAM_BLD_free() 122 int OSSL_PARAM_BLD_push_int(OSSL_PARAM_BLD *bld, const char *key, int num) in OSSL_PARAM_BLD_push_int() 132 int OSSL_PARAM_BLD_push_uint(OSSL_PARAM_BLD *bld, const char *key, in OSSL_PARAM_BLD_push_uint() 144 int OSSL_PARAM_BLD_push_long(OSSL_PARAM_BLD *bld, const char *key, in OSSL_PARAM_BLD_push_long() 155 int OSSL_PARAM_BLD_push_ulong(OSSL_PARAM_BLD *bld, const char *key, in OSSL_PARAM_BLD_push_ulong() [all …]
|
| H A D | param_build_set.c | 22 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()
|
| /freebsd/crypto/openssl/doc/man3/ |
| H A D | OSSL_PARAM_BLD.pod | 5 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); 29 int OSSL_PARAM_BLD_push_TYPE(OSSL_PARAM_BLD *bld, const char *key, TYPE val); 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, 36 int OSSL_PARAM_BLD_push_utf8_string(OSSL_PARAM_BLD *bld, const char *key, 38 int OSSL_PARAM_BLD_push_utf8_ptr(OSSL_PARAM_BLD *bld, const char *key, [all …]
|
| H A D | OSSL_PARAM_dup.pod | 45 L<OSSL_PARAM(3)>, L<OSSL_PARAM_BLD(3)>
|
| /freebsd/crypto/openssl/include/crypto/ |
| H A D | dh.h | 36 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 D | rsa.h | 74 int ossl_rsa_todata(RSA *rsa, OSSL_PARAM_BLD *bld, OSSL_PARAM params[], 78 OSSL_PARAM_BLD *bld, OSSL_PARAM params[]);
|
| H A D | ec.h | 71 int ossl_ec_group_todata(const EC_GROUP *group, OSSL_PARAM_BLD *tmpl,
|
| /freebsd/crypto/openssl/test/ |
| H A D | param_build_test.c | 21 OSSL_PARAM_BLD *bld = NULL; in template_public_single_zero_test() 54 OSSL_PARAM_BLD *bld = NULL; in template_private_single_zero_test() 88 OSSL_PARAM_BLD *bld = OSSL_PARAM_BLD_new(); in template_public_test() 239 OSSL_PARAM_BLD *bld = NULL; in template_private_test() 400 OSSL_PARAM_BLD *bld = OSSL_PARAM_BLD_new(); in builder_limit_test() 445 OSSL_PARAM_BLD *bld = OSSL_PARAM_BLD_new(); in builder_merge_test() 446 OSSL_PARAM_BLD *bld2 = OSSL_PARAM_BLD_new(); in builder_merge_test()
|
| H A D | endecode_test.c | 63 static OSSL_PARAM_BLD *bld_prime_nc = NULL; 64 static OSSL_PARAM_BLD *bld_prime = NULL; 69 static OSSL_PARAM_BLD *bld_tri_nc = NULL; 70 static OSSL_PARAM_BLD *bld_tri = NULL; 1110 static int do_create_ec_explicit_prime_params(OSSL_PARAM_BLD *bld, in do_create_ec_explicit_prime_params() 1172 static int create_ec_explicit_prime_params_namedcurve(OSSL_PARAM_BLD *bld) in create_ec_explicit_prime_params_namedcurve() 1189 static int create_ec_explicit_prime_params(OSSL_PARAM_BLD *bld) in create_ec_explicit_prime_params() 1208 static int do_create_ec_explicit_trinomial_params(OSSL_PARAM_BLD *bld, in do_create_ec_explicit_trinomial_params() 1288 static int create_ec_explicit_trinomial_params_namedcurve(OSSL_PARAM_BLD *bld) in create_ec_explicit_trinomial_params_namedcurve() 1302 static int create_ec_explicit_trinomial_params(OSSL_PARAM_BLD *bld) in create_ec_explicit_trinomial_params()
|
| H A D | evp_pkey_provided_test.c | 546 OSSL_PARAM_BLD *bld = NULL; in test_fromdata_rsa_derive_from_pq_sp800() 635 OSSL_PARAM_BLD *bld = NULL; in test_fromdata_rsa_derive_from_pq_multiprime() 834 OSSL_PARAM_BLD *bld = NULL; in test_evp_pkey_get_bn_param_large() 895 OSSL_PARAM_BLD *bld = NULL; in test_fromdata_dh_named_group() 1134 OSSL_PARAM_BLD *bld = NULL; in test_fromdata_dh_fips186_4() 1603 OSSL_PARAM_BLD *bld = NULL; in test_fromdata_ec() 1887 OSSL_PARAM_BLD *bld = NULL; in test_fromdata_dsa_fips186_4()
|
| H A D | provider_test.c | 168 OSSL_PARAM_BLD *bld = NULL; in test_provider_ex()
|
| /freebsd/crypto/openssl/crypto/dh/ |
| H A D | dh_backend.c | 90 int ossl_dh_params_todata(DH *dh, OSSL_PARAM_BLD *bld, OSSL_PARAM params[]) in ossl_dh_params_todata() 102 int ossl_dh_key_todata(DH *dh, OSSL_PARAM_BLD *bld, OSSL_PARAM params[], in ossl_dh_key_todata()
|
| /freebsd/crypto/openssl/providers/implementations/keymgmt/ |
| H A D | template_kmgmt.c | 135 static int key_to_params(void *key, OSSL_PARAM_BLD *tmpl, in key_to_params() 149 OSSL_PARAM_BLD *tmpl; in template_export()
|
| H A D | slh_dsa_kmgmt.c | 153 static int key_to_params(SLH_DSA_KEY *key, OSSL_PARAM_BLD *tmpl, in key_to_params() 225 OSSL_PARAM_BLD *tmpl; in slh_dsa_export()
|
| H A D | mac_legacy_kmgmt.c | 235 static int key_to_params(MAC_KEY *key, OSSL_PARAM_BLD *tmpl, in key_to_params() 268 OSSL_PARAM_BLD *tmpl; in mac_export()
|
| H A D | ec_kmgmt.c | 113 static ossl_inline int key_to_params(const EC_KEY *eckey, OSSL_PARAM_BLD *tmpl, in key_to_params() 240 static ossl_inline int otherparams_to_params(const EC_KEY *ec, OSSL_PARAM_BLD *tmpl, in otherparams_to_params() 444 OSSL_PARAM_BLD *tmpl = NULL; in ec_export() 1114 OSSL_PARAM_BLD *bld; in ec_gen_set_group_from_params()
|
| /freebsd/crypto/openssl/demos/pkey/ |
| H A D | EVP_PKEY_DSA_paramfromdata.c | 27 OSSL_PARAM_BLD *bld = NULL; in main()
|
| /freebsd/contrib/unbound/sldns/ |
| H A D | keyraw.c | 292 OSSL_PARAM_BLD* param_bld; in sldns_key_dsa2pkey_raw() 460 OSSL_PARAM_BLD* param_bld; in sldns_key_rsa2pkey_raw() 568 OSSL_PARAM_BLD* param_bld; in sldns_ecdsa2pkey_raw()
|
| /freebsd/crypto/openssl/apps/ |
| H A D | testdsa.h | 1441 OSSL_PARAM_BLD *tmpl = NULL; in get_dsa()
|
| /freebsd/crypto/openssl/test/helpers/ |
| H A D | predefined_dhparams.c | 22 OSSL_PARAM_BLD *tmpl = NULL; in get_dh_from_pg_bn()
|
| /freebsd/crypto/openssl/crypto/rsa/ |
| H A D | rsa_backend.c | 260 int ossl_rsa_todata(RSA *rsa, OSSL_PARAM_BLD *bld, OSSL_PARAM params[], in DEFINE_SPECIAL_STACK_OF_CONST() 309 OSSL_PARAM_BLD *bld, OSSL_PARAM params[]) in ossl_rsa_pss_params_30_todata()
|