diff --git a/doc/dox_comments/header_files/ed448.h b/doc/dox_comments/header_files/ed448.h index dab8874b3..6b0a4eeab 100644 --- a/doc/dox_comments/header_files/ed448.h +++ b/doc/dox_comments/header_files/ed448.h @@ -99,6 +99,9 @@ int wc_ed448_make_key(WC_RNG* rng, int keysize, ed448_key* key); bytes written to out upon successfully generating a message signature. \param [in] key Pointer to a private ed448_key with which to generate the signature. + \param [in] context Pointer to the buffer containing the context for which + message is being signed. + \param [in] contextLen Length of the context buffer. _Example_ \code diff --git a/doc/dox_comments/header_files/memory.h b/doc/dox_comments/header_files/memory.h index 038b87d3e..2f5e9cce1 100644 --- a/doc/dox_comments/header_files/memory.h +++ b/doc/dox_comments/header_files/memory.h @@ -47,8 +47,6 @@ void* wolfSSL_Malloc(size_t size, void* heap, int type); \param ptr pointer to the memory to be freed. \param heap heap hint to use for memory. Can be NULL \param type dynamic type (see DYNAMIC_TYPE_ list in types.h) - \param func name of calling function (for allocation tracking) - \param line source line number of call site _Example_ \code @@ -56,7 +54,7 @@ void* wolfSSL_Malloc(size_t size, void* heap, int type); // process data as desired ... if(tenInts) { - wolfSSL_Free(tenInts); + wolfSSL_Free(tenInts, NULL, DYNAMIC_TYPE_TMP_BUFFER); } \endcode @@ -67,8 +65,7 @@ void* wolfSSL_Malloc(size_t size, void* heap, int type); \sa XFREE \sa XREALLOC */ -void wolfSSL_Free(void *ptr, void* heap, int type, const char* func, - unsigned int line); +void wolfSSL_Free(void *ptr, void* heap, int type); /*! \ingroup Memory diff --git a/doc/dox_comments/header_files/random.h b/doc/dox_comments/header_files/random.h index 80a16b501..8d415db21 100644 --- a/doc/dox_comments/header_files/random.h +++ b/doc/dox_comments/header_files/random.h @@ -24,7 +24,7 @@ \sa wc_FreeNetRandom */ -int wc_InitNetRandom(const char*, wnr_hmac_key, int); +int wc_InitNetRandom(const char* configFile, wnr_hmac_key hmac_cb, int timeout); /*! \ingroup Random diff --git a/doc/dox_comments/header_files/wolfio.h b/doc/dox_comments/header_files/wolfio.h index 8a35464ab..2197dbcc0 100644 --- a/doc/dox_comments/header_files/wolfio.h +++ b/doc/dox_comments/header_files/wolfio.h @@ -115,7 +115,7 @@ int EmbedSend(WOLFSSL* ssl, char* buf, int sz, void* ctx); \sa wolfSSL_SSLSetIORecv \sa wolfSSL_dtls_get_current_timeout */ -int EmbedReceiveFrom(WOLFSSL *ssl, char *buf, int sz, void *ctx); +int EmbedReceiveFrom(WOLFSSL* ssl, char* buf, int sz, void* ctx); /*! \brief This function is the send embedded callback. @@ -189,8 +189,8 @@ int EmbedSendTo(WOLFSSL* ssl, char* buf, int sz, void* ctx); \sa wolfSSL_CTX_SetGenCookie */ -int EmbedGenerateCookie(WOLFSSL* ssl, byte *buf, - int sz, void *ctx); +int EmbedGenerateCookie(WOLFSSL* ssl, byte* buf, + int sz, void* ctx); /*! \brief This function frees the response buffer.