Add mbedtls_md_clone()

This commit is contained in:
Manuel Pégourié-Gonnard 2015-07-06 16:06:02 +02:00
parent 16d412f465
commit 052a6c9cfe
4 changed files with 86 additions and 0 deletions

View file

@ -77,6 +77,9 @@ struct mbedtls_md_info_t
/** Free the given context */
void (*ctx_free_func)( void *ctx );
/** Clone state from a context */
void (*clone_func)( void *dst, const void *src );
/** Internal use only */
void (*process_func)( void *ctx, const unsigned char *input );
};