Added md_process() to MD layer for generic internal access to hash

process functions

Access to process functions is needed to reduce possible timing attacks
on SSL MAC checks. As SSL is set to move to using the dynamic MD layer,
the MD layer needs access to these process functions as well.
This commit is contained in:
Paul Bakker 2013-03-13 10:26:44 +01:00
parent 90f042d4cb
commit 1bd3ae826c
9 changed files with 77 additions and 3 deletions

View file

@ -146,6 +146,9 @@ void md2_hmac( const unsigned char *key, size_t keylen,
*/
int md2_self_test( int verbose );
/* Internal use */
void md2_process( md2_context *ctx );
#ifdef __cplusplus
}
#endif