Add mbedtls_md_clone()
diff --git a/include/mbedtls/md_internal.h b/include/mbedtls/md_internal.h
index fe0feb3..f2a0632 100644
--- a/include/mbedtls/md_internal.h
+++ b/include/mbedtls/md_internal.h
@@ -77,6 +77,9 @@
     /** 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 );
 };