Lines Matching refs:OSSL_PARAM

53 OSSL_PARAM *OSSL_PARAM_locate(OSSL_PARAM *p, const char *key)  in OSSL_PARAM_locate()
62 const OSSL_PARAM *OSSL_PARAM_locate_const(const OSSL_PARAM *p, const char *key) in OSSL_PARAM_locate_const()
64 return OSSL_PARAM_locate((OSSL_PARAM *)p, key); in OSSL_PARAM_locate_const()
67 static OSSL_PARAM ossl_param_construct(const char *key, unsigned int data_type, in ossl_param_construct()
70 OSSL_PARAM res; in ossl_param_construct()
80 int OSSL_PARAM_modified(const OSSL_PARAM *p) in OSSL_PARAM_modified()
85 void OSSL_PARAM_set_all_unmodified(OSSL_PARAM *p) in OSSL_PARAM_set_all_unmodified()
198 static int general_get_int(const OSSL_PARAM *p, void *val, size_t val_size) in general_get_int()
213 static int general_set_int(OSSL_PARAM *p, void *val, size_t val_size) in general_set_int()
231 static int general_get_uint(const OSSL_PARAM *p, void *val, size_t val_size) in general_get_uint()
247 static int general_set_uint(OSSL_PARAM *p, void *val, size_t val_size) in general_set_uint()
264 int OSSL_PARAM_get_int(const OSSL_PARAM *p, int *val) in OSSL_PARAM_get_int()
277 int OSSL_PARAM_set_int(OSSL_PARAM *p, int val) in OSSL_PARAM_set_int()
290 OSSL_PARAM OSSL_PARAM_construct_int(const char *key, int *buf) in OSSL_PARAM_construct_int()
295 int OSSL_PARAM_get_uint(const OSSL_PARAM *p, unsigned int *val) in OSSL_PARAM_get_uint()
308 int OSSL_PARAM_set_uint(OSSL_PARAM *p, unsigned int val) in OSSL_PARAM_set_uint()
321 OSSL_PARAM OSSL_PARAM_construct_uint(const char *key, unsigned int *buf) in OSSL_PARAM_construct_uint()
327 int OSSL_PARAM_get_long(const OSSL_PARAM *p, long int *val) in OSSL_PARAM_get_long()
340 int OSSL_PARAM_set_long(OSSL_PARAM *p, long int val) in OSSL_PARAM_set_long()
353 OSSL_PARAM OSSL_PARAM_construct_long(const char *key, long int *buf) in OSSL_PARAM_construct_long()
358 int OSSL_PARAM_get_ulong(const OSSL_PARAM *p, unsigned long int *val) in OSSL_PARAM_get_ulong()
371 int OSSL_PARAM_set_ulong(OSSL_PARAM *p, unsigned long int val) in OSSL_PARAM_set_ulong()
384 OSSL_PARAM OSSL_PARAM_construct_ulong(const char *key, unsigned long int *buf) in OSSL_PARAM_construct_ulong()
390 int OSSL_PARAM_get_int32(const OSSL_PARAM *p, int32_t *val) in OSSL_PARAM_get_int32()
470 int OSSL_PARAM_set_int32(OSSL_PARAM *p, int32_t val) in OSSL_PARAM_set_int32()
538 OSSL_PARAM OSSL_PARAM_construct_int32(const char *key, int32_t *buf) in OSSL_PARAM_construct_int32()
544 int OSSL_PARAM_get_uint32(const OSSL_PARAM *p, uint32_t *val) in OSSL_PARAM_get_uint32()
625 int OSSL_PARAM_set_uint32(OSSL_PARAM *p, uint32_t val) in OSSL_PARAM_set_uint32()
694 OSSL_PARAM OSSL_PARAM_construct_uint32(const char *key, uint32_t *buf) in OSSL_PARAM_construct_uint32()
700 int OSSL_PARAM_get_int64(const OSSL_PARAM *p, int64_t *val) in OSSL_PARAM_get_int64()
772 int OSSL_PARAM_set_int64(OSSL_PARAM *p, int64_t val) in OSSL_PARAM_set_int64()
844 OSSL_PARAM OSSL_PARAM_construct_int64(const char *key, int64_t *buf) in OSSL_PARAM_construct_int64()
849 int OSSL_PARAM_get_uint64(const OSSL_PARAM *p, uint64_t *val) in OSSL_PARAM_get_uint64()
927 int OSSL_PARAM_set_uint64(OSSL_PARAM *p, uint64_t val) in OSSL_PARAM_set_uint64()
999 OSSL_PARAM OSSL_PARAM_construct_uint64(const char *key, uint64_t *buf) in OSSL_PARAM_construct_uint64()
1005 int OSSL_PARAM_get_size_t(const OSSL_PARAM *p, size_t *val) in OSSL_PARAM_get_size_t()
1018 int OSSL_PARAM_set_size_t(OSSL_PARAM *p, size_t val) in OSSL_PARAM_set_size_t()
1031 OSSL_PARAM OSSL_PARAM_construct_size_t(const char *key, size_t *buf) in OSSL_PARAM_construct_size_t()
1037 int OSSL_PARAM_get_time_t(const OSSL_PARAM *p, time_t *val) in OSSL_PARAM_get_time_t()
1050 int OSSL_PARAM_set_time_t(OSSL_PARAM *p, time_t val) in OSSL_PARAM_set_time_t()
1063 OSSL_PARAM OSSL_PARAM_construct_time_t(const char *key, time_t *buf) in OSSL_PARAM_construct_time_t()
1068 int OSSL_PARAM_get_BN(const OSSL_PARAM *p, BIGNUM **val) in OSSL_PARAM_get_BN()
1098 int OSSL_PARAM_set_BN(OSSL_PARAM *p, const BIGNUM *val) in OSSL_PARAM_set_BN()
1151 OSSL_PARAM OSSL_PARAM_construct_BN(const char *key, unsigned char *buf, in OSSL_PARAM_construct_BN()
1159 int OSSL_PARAM_get_double(const OSSL_PARAM *p, double *val) in OSSL_PARAM_get_double()
1211 int OSSL_PARAM_set_double(OSSL_PARAM *p, double val) in OSSL_PARAM_set_double()
1299 OSSL_PARAM OSSL_PARAM_construct_double(const char *key, double *buf) in OSSL_PARAM_construct_double()
1305 static int get_string_internal(const OSSL_PARAM *p, void **val, in get_string_internal()
1355 int OSSL_PARAM_get_utf8_string(const OSSL_PARAM *p, char **val, size_t max_len) in OSSL_PARAM_get_utf8_string()
1386 int OSSL_PARAM_get_octet_string(const OSSL_PARAM *p, void **val, size_t max_len, in OSSL_PARAM_get_octet_string()
1393 static int set_string_internal(OSSL_PARAM *p, const void *val, size_t len, in set_string_internal()
1415 int OSSL_PARAM_set_utf8_string(OSSL_PARAM *p, const char *val) in OSSL_PARAM_set_utf8_string()
1430 int OSSL_PARAM_set_octet_string(OSSL_PARAM *p, const void *val, in OSSL_PARAM_set_octet_string()
1446 OSSL_PARAM OSSL_PARAM_construct_utf8_string(const char *key, char *buf, in OSSL_PARAM_construct_utf8_string()
1454 OSSL_PARAM OSSL_PARAM_construct_octet_string(const char *key, void *buf, in OSSL_PARAM_construct_octet_string()
1460 static int get_ptr_internal(const OSSL_PARAM *p, const void **val, in get_ptr_internal()
1477 int OSSL_PARAM_get_utf8_ptr(const OSSL_PARAM *p, const char **val) in OSSL_PARAM_get_utf8_ptr()
1482 int OSSL_PARAM_get_octet_ptr(const OSSL_PARAM *p, const void **val, in OSSL_PARAM_get_octet_ptr()
1488 static int set_ptr_internal(OSSL_PARAM *p, const void *val, in set_ptr_internal()
1501 int OSSL_PARAM_set_utf8_ptr(OSSL_PARAM *p, const char *val) in OSSL_PARAM_set_utf8_ptr()
1512 int OSSL_PARAM_set_octet_ptr(OSSL_PARAM *p, const void *val, in OSSL_PARAM_set_octet_ptr()
1523 OSSL_PARAM OSSL_PARAM_construct_utf8_ptr(const char *key, char **buf, in OSSL_PARAM_construct_utf8_ptr()
1529 OSSL_PARAM OSSL_PARAM_construct_octet_ptr(const char *key, void **buf, in OSSL_PARAM_construct_octet_ptr()
1544 int ossl_param_get1_octet_string(const OSSL_PARAM *params, const char *name, in ossl_param_get1_octet_string()
1547 const OSSL_PARAM *p = OSSL_PARAM_locate_const(params, name); in ossl_param_get1_octet_string()
1565 static int setbuf_fromparams(const OSSL_PARAM *p, const char *name, in setbuf_fromparams()
1596 int ossl_param_get1_concat_octet_string(const OSSL_PARAM *params, const char *name, in ossl_param_get1_concat_octet_string()
1600 const OSSL_PARAM *p = OSSL_PARAM_locate_const(params, name); in ossl_param_get1_concat_octet_string()
1640 OSSL_PARAM OSSL_PARAM_construct_end(void) in OSSL_PARAM_construct_end()
1642 OSSL_PARAM end = OSSL_PARAM_END; in OSSL_PARAM_construct_end()
1647 static int get_string_ptr_internal(const OSSL_PARAM *p, const void **val, in get_string_ptr_internal()
1664 int OSSL_PARAM_get_utf8_string_ptr(const OSSL_PARAM *p, const char **val) in OSSL_PARAM_get_utf8_string_ptr()
1676 int OSSL_PARAM_get_octet_string_ptr(const OSSL_PARAM *p, const void **val, in OSSL_PARAM_get_octet_string_ptr()