Add md/shaXXX_clone() API
Will be used in the SSL/TLS modules
This commit is contained in:
parent
b9d64e5bbe
commit
16d412f465
14 changed files with 105 additions and 0 deletions
|
@ -66,6 +66,15 @@ void mbedtls_md2_init( mbedtls_md2_context *ctx );
|
|||
*/
|
||||
void mbedtls_md2_free( mbedtls_md2_context *ctx );
|
||||
|
||||
/**
|
||||
* \brief Clone (the state of) an MD2 context
|
||||
*
|
||||
* \param dst The destination context
|
||||
* \param src The context to be cloned
|
||||
*/
|
||||
void mbedtls_md2_clone( mbedtls_md2_context *dst,
|
||||
const mbedtls_md2_context *src );
|
||||
|
||||
/**
|
||||
* \brief MD2 context setup
|
||||
*
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue