Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions sm3.c
Original file line number Diff line number Diff line change
Expand Up @@ -1154,9 +1154,6 @@ void wc_Sm3Free(wc_Sm3* sm3)
* @param [in] src SM3 hash object to copy.
* @param [in, out] dst SM3 hash object to copy into.
*/
/* Defined below; used by wc_Sm3GetHash() for a device aware copy. */
int wc_Sm3Copy(const wc_Sm3* src, wc_Sm3* dst);

static void sm3_copy(const wc_Sm3* src, wc_Sm3* dst)
{
XMEMCPY(dst, src, sizeof(wc_Sm3));
Expand Down
Loading