Skip to content
Merged
Show file tree
Hide file tree
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
16 changes: 16 additions & 0 deletions src/internal.c
Original file line number Diff line number Diff line change
Expand Up @@ -18118,6 +18118,22 @@ int wolfSSH_TestHighwaterCheck(WOLFSSH* ssh, byte side)
return HighwaterCheck(ssh, side);
}

#ifndef WOLFSSH_NO_DH

int wolfSSH_TestKeyAgreeDh_client(WOLFSSH* ssh, byte hashId,
const byte* f, word32 fSz)
{
return KeyAgreeDh_client(ssh, hashId, f, fSz);
}

int wolfSSH_TestKeyAgreeDh_server(WOLFSSH* ssh, byte hashId,
byte* f, word32* fSz)
{
return KeyAgreeDh_server(ssh, hashId, f, fSz);
}

#endif /* !WOLFSSH_NO_DH */

#ifndef WOLFSSH_NO_DH_GEX_SHA256

int wolfSSH_TestDoKexDhGexRequest(WOLFSSH* ssh, byte* buf, word32 len,
Expand Down
Loading
Loading