Add mbedtls_md_clone()
This commit is contained in:
parent
16d412f465
commit
052a6c9cfe
4 changed files with 86 additions and 0 deletions
|
@ -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 );
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue