Searched refs:mbedtls_dhm_context (Results 1 – 12 of 12) sorted by relevance
/third_party/mbedtls/include/mbedtls/ |
D | dhm.h | 114 typedef struct mbedtls_dhm_context struct 127 mbedtls_dhm_context; typedef 138 void mbedtls_dhm_init( mbedtls_dhm_context *ctx ); 162 int mbedtls_dhm_read_params( mbedtls_dhm_context *ctx, 198 int mbedtls_dhm_make_params( mbedtls_dhm_context *ctx, int x_size, 218 int mbedtls_dhm_set_group( mbedtls_dhm_context *ctx, 238 int mbedtls_dhm_read_public( mbedtls_dhm_context *ctx, 265 int mbedtls_dhm_make_public( mbedtls_dhm_context *ctx, int x_size, 296 int mbedtls_dhm_calc_secret( mbedtls_dhm_context *ctx, 309 size_t mbedtls_dhm_get_bitlen( const mbedtls_dhm_context *ctx ); [all …]
|
D | ssl.h | 3165 int mbedtls_ssl_conf_dh_param_ctx( mbedtls_ssl_config *conf, mbedtls_dhm_context *dhm_ctx );
|
/third_party/mbedtls/library/ |
D | dhm.c | 121 void mbedtls_dhm_init( mbedtls_dhm_context *ctx ) in mbedtls_dhm_init() 124 memset( ctx, 0, sizeof( mbedtls_dhm_context ) ); in mbedtls_dhm_init() 127 size_t mbedtls_dhm_get_bitlen( const mbedtls_dhm_context *ctx ) in mbedtls_dhm_get_bitlen() 132 size_t mbedtls_dhm_get_len( const mbedtls_dhm_context *ctx ) in mbedtls_dhm_get_len() 137 int mbedtls_dhm_get_value( const mbedtls_dhm_context *ctx, in mbedtls_dhm_get_value() 171 int mbedtls_dhm_read_params( mbedtls_dhm_context *ctx, in mbedtls_dhm_read_params() 206 static int dhm_make_common( mbedtls_dhm_context *ctx, int x_size, in dhm_make_common() 247 int mbedtls_dhm_make_params( mbedtls_dhm_context *ctx, int x_size, in mbedtls_dhm_make_params() 298 int mbedtls_dhm_set_group( mbedtls_dhm_context *ctx, in mbedtls_dhm_set_group() 319 int mbedtls_dhm_read_public( mbedtls_dhm_context *ctx, in mbedtls_dhm_read_public() [all …]
|
D | ssl_misc.h | 598 mbedtls_dhm_context dhm_ctx; /*!< DHM key exchange */
|
D | ssl_tls.c | 3958 int mbedtls_ssl_conf_dh_param_ctx( mbedtls_ssl_config *conf, mbedtls_dhm_context *dhm_ctx ) in mbedtls_ssl_conf_dh_param_ctx()
|
/third_party/mbedtls/tests/include/alt-dummy/ |
D | dhm_alt.h | 22 typedef struct mbedtls_dhm_context struct 26 mbedtls_dhm_context; typedef
|
/third_party/mbedtls/tests/suites/ |
D | test_suite_dhm.function | 4 int check_get_value( const mbedtls_dhm_context *ctx, 55 static int check_dhm_params( const mbedtls_dhm_context *ctx, 94 mbedtls_dhm_context ctx_srv; 95 mbedtls_dhm_context ctx_cli; 231 mbedtls_dhm_context ctx; 260 mbedtls_dhm_context ctx;
|
/third_party/mbedtls/programs/pkey/ |
D | dh_client.c | 87 mbedtls_dhm_context dhm; in main()
|
D | dh_server.c | 87 mbedtls_dhm_context dhm; in main()
|
/third_party/mbedtls/docs/architecture/ |
D | alternative-implementations.md | 50 * DHM: if `MBEDTLS_DEBUG_C` is enabled, `mbedtls_dhm_context` must have the fields `P`, `Q`, `G`, `…
|
/third_party/mbedtls/programs/test/ |
D | benchmark.c | 1028 mbedtls_dhm_context dhm; in main()
|
/third_party/mbedtls/programs/ssl/ |
D | ssl_server2.c | 1335 mbedtls_dhm_context dhm; in main()
|