Searched refs:hmac_ctx (Results 1 – 5 of 5) sorted by relevance
/mbedtls-3.4.0/library/ |
D | ssl_cookie.c | 71 mbedtls_md_init( &ctx->hmac_ctx ); in mbedtls_ssl_cookie_init() 95 mbedtls_md_free( &ctx->hmac_ctx ); in mbedtls_ssl_cookie_free() 142 ret = mbedtls_md_setup( &ctx->hmac_ctx, mbedtls_md_info_from_type( COOKIE_MD ), 1 ); in mbedtls_ssl_cookie_setup() 146 ret = mbedtls_md_hmac_starts( &ctx->hmac_ctx, key, sizeof( key ) ); in mbedtls_ssl_cookie_setup() 161 static int ssl_cookie_hmac( mbedtls_md_context_t *hmac_ctx, in ssl_cookie_hmac() argument 170 if( mbedtls_md_hmac_reset( hmac_ctx ) != 0 || in ssl_cookie_hmac() 171 mbedtls_md_hmac_update( hmac_ctx, time, 4 ) != 0 || in ssl_cookie_hmac() 172 mbedtls_md_hmac_update( hmac_ctx, cli_id, cli_id_len ) != 0 || in ssl_cookie_hmac() 173 mbedtls_md_hmac_finish( hmac_ctx, hmac_out ) != 0 ) in ssl_cookie_hmac() 255 ret = ssl_cookie_hmac( &ctx->hmac_ctx, *p - 4, in mbedtls_ssl_cookie_write() [all …]
|
D | md.c | 289 if( ctx->hmac_ctx != NULL ) in mbedtls_md_free() 291 mbedtls_platform_zeroize( ctx->hmac_ctx, in mbedtls_md_free() 293 mbedtls_free( ctx->hmac_ctx ); in mbedtls_md_free() 369 ctx->hmac_ctx = NULL; in mbedtls_md_setup() 414 ctx->hmac_ctx = mbedtls_calloc( 2, md_info->block_size ); in mbedtls_md_setup() 415 if( ctx->hmac_ctx == NULL ) in mbedtls_md_setup() 638 if( ctx == NULL || ctx->md_info == NULL || ctx->hmac_ctx == NULL ) in mbedtls_md_hmac_starts() 654 ipad = (unsigned char *) ctx->hmac_ctx; in mbedtls_md_hmac_starts() 655 opad = (unsigned char *) ctx->hmac_ctx + ctx->md_info->block_size; in mbedtls_md_hmac_starts() 680 if( ctx == NULL || ctx->md_info == NULL || ctx->hmac_ctx == NULL ) in mbedtls_md_hmac_update() [all …]
|
D | constant_time.c | 594 const unsigned char * const ikey = ctx->hmac_ctx; in mbedtls_ct_hmac()
|
/mbedtls-3.4.0/include/mbedtls/ |
D | ssl_cookie.h | 62 mbedtls_md_context_t MBEDTLS_PRIVATE(hmac_ctx); /*!< context for the HMAC portion */
|
D | md.h | 102 void *MBEDTLS_PRIVATE(hmac_ctx);
|