Add dhm_init()
diff --git a/include/polarssl/dhm.h b/include/polarssl/dhm.h
index 322a788..064472f 100644
--- a/include/polarssl/dhm.h
+++ b/include/polarssl/dhm.h
@@ -170,6 +170,13 @@
dhm_context;
/**
+ * \brief Initialize DHM context
+ *
+ * \param ctx DHM context to be initialized
+ */
+void dhm_init( dhm_context *ctx );
+
+/**
* \brief Parse the ServerKeyExchange parameters
*
* \param ctx DHM context
@@ -256,7 +263,9 @@
void *p_rng );
/**
- * \brief Free the components of a DHM key
+ * \brief Free and clear the components of a DHM key
+ *
+ * \param ctx DHM context to free and clear
*/
void dhm_free( dhm_context *ctx );