Home
last modified time | relevance | path

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

/reactos/dll/3rdparty/mbedtls/
H A Dmd.c348 unsigned char *ipad, *opad; in mbedtls_md_hmac_starts() local
367 ipad = (unsigned char *) ctx->hmac_ctx; in mbedtls_md_hmac_starts()
370 memset( ipad, 0x36, ctx->md_info->block_size ); in mbedtls_md_hmac_starts()
375 ipad[i] = (unsigned char)( ipad[i] ^ key[i] ); in mbedtls_md_hmac_starts()
381 if( ( ret = ctx->md_info->update_func( ctx->md_ctx, ipad, in mbedtls_md_hmac_starts()
426 unsigned char *ipad; in mbedtls_md_hmac_reset() local
431 ipad = (unsigned char *) ctx->hmac_ctx; in mbedtls_md_hmac_reset()
435 return( ctx->md_info->update_func( ctx->md_ctx, ipad, in mbedtls_md_hmac_reset()