mirror of
https://git.suyu.dev/suyu/mbedtls.git
synced 2025-12-23 15:55:10 +01:00
- Added reset functionality for HMAC context. Speed-up for some use-cases.
This commit is contained in:
parent
27caa8a17e
commit
7d3b661bfe
13 changed files with 100 additions and 2 deletions
|
|
@ -113,6 +113,13 @@ void md5_hmac_update( md5_context *ctx,
|
|||
*/
|
||||
void md5_hmac_finish( md5_context *ctx, unsigned char output[16] );
|
||||
|
||||
/**
|
||||
* \brief MD5 HMAC context reset
|
||||
*
|
||||
* \param ctx HMAC context to be reset
|
||||
*/
|
||||
void md5_hmac_reset( md5_context *ctx );
|
||||
|
||||
/**
|
||||
* \brief Output = HMAC-MD5( hmac key, input buffer )
|
||||
*
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue