Lines Matching refs:OSSL_PARAM_BLD
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,
40 int OSSL_PARAM_BLD_push_octet_string(OSSL_PARAM_BLD *bld, const char *key,
42 int OSSL_PARAM_BLD_push_octet_ptr(OSSL_PARAM_BLD *bld, const char *key,
51 OSSL_PARAM_BLD_new() allocates and initialises a new OSSL_PARAM_BLD structure
57 OSSL_PARAM_BLD_to_param() converts a built up OSSL_PARAM_BLD structure
118 OSSL_PARAM_BLD_new() returns the allocated OSSL_PARAM_BLD structure, or NULL
142 OSSL_PARAM_BLD *bld = OSSL_PARAM_BLD_new();
163 OSSL_PARAM_BLD *bld = OSSL_PARAM_BLD_new();