Home
last modified time | relevance | path

Searched refs:hmac_ctx (Results 1 – 5 of 5) sorted by relevance

/openthread-3.6.0/third_party/mbedtls/repo/library/
Dssl_cookie.c72 mbedtls_md_init( &ctx->hmac_ctx ); in mbedtls_ssl_cookie_init()
90 mbedtls_md_free( &ctx->hmac_ctx ); in mbedtls_ssl_cookie_free()
109 ret = mbedtls_md_setup( &ctx->hmac_ctx, mbedtls_md_info_from_type( COOKIE_MD ), 1 ); in mbedtls_ssl_cookie_setup()
113 ret = mbedtls_md_hmac_starts( &ctx->hmac_ctx, key, sizeof( key ) ); in mbedtls_ssl_cookie_setup()
125 static int ssl_cookie_hmac( mbedtls_md_context_t *hmac_ctx, in ssl_cookie_hmac() argument
134 if( mbedtls_md_hmac_reset( hmac_ctx ) != 0 || in ssl_cookie_hmac()
135 mbedtls_md_hmac_update( hmac_ctx, time, 4 ) != 0 || in ssl_cookie_hmac()
136 mbedtls_md_hmac_update( hmac_ctx, cli_id, cli_id_len ) != 0 || in ssl_cookie_hmac()
137 mbedtls_md_hmac_finish( hmac_ctx, hmac_out ) != 0 ) in ssl_cookie_hmac()
178 ret = ssl_cookie_hmac( &ctx->hmac_ctx, *p - 4, in mbedtls_ssl_cookie_write()
[all …]
Dmd.c325 if( ctx->hmac_ctx != NULL ) in mbedtls_md_free()
327 mbedtls_platform_zeroize( ctx->hmac_ctx, in mbedtls_md_free()
329 mbedtls_free( ctx->hmac_ctx ); in mbedtls_md_free()
416 ctx->hmac_ctx = NULL; in mbedtls_md_setup()
465 ctx->hmac_ctx = mbedtls_calloc( 2, md_info->block_size ); in mbedtls_md_setup()
466 if( ctx->hmac_ctx == NULL ) in mbedtls_md_setup()
706 if( ctx == NULL || ctx->md_info == NULL || ctx->hmac_ctx == NULL ) in mbedtls_md_hmac_starts()
722 ipad = (unsigned char *) ctx->hmac_ctx; in mbedtls_md_hmac_starts()
723 opad = (unsigned char *) ctx->hmac_ctx + ctx->md_info->block_size; in mbedtls_md_hmac_starts()
748 if( ctx == NULL || ctx->md_info == NULL || ctx->hmac_ctx == NULL ) in mbedtls_md_hmac_update()
[all …]
Dconstant_time.c467 const unsigned char * const ikey = ctx->hmac_ctx; in mbedtls_ct_hmac()
/openthread-3.6.0/third_party/mbedtls/repo/include/mbedtls/
Dssl_cookie.h59 mbedtls_md_context_t hmac_ctx; /*!< context for the HMAC portion */ member
Dmd.h104 void *hmac_ctx; member