Skip to content

Commit

Permalink
Merge pull request wolfSSL#729 from ejohnstown/new-kdf
Browse files Browse the repository at this point in the history
Use wolfCrypt SSHv2 KDF
  • Loading branch information
dgarske authored and jefferyq2 committed Oct 18, 2024
1 parent ff4c9a3 commit b364c1a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions src/internal.c
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,8 @@
#ifdef WOLFSSL_HAVE_KYBER
#include <wolfssl/wolfcrypt/kyber.h>
#include <wolfssl/wolfcrypt/wc_kyber.h>
#ifdef WOLFSSH_HAVE_LIBOQS
#include <oqs/kem.h>
#endif

#ifdef NO_INLINE
Expand Down
2 changes: 1 addition & 1 deletion wolfssh/error.h
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ enum WS_ErrorCodes {

WS_LAST_E = -1095 /* Update this to indicate last error */

WS_LAST_E = -1096 /* Update this to indicate last error */
WS_LAST_E = -1097 /* Update this to indicate last error */
};


Expand Down
1 change: 1 addition & 0 deletions wolfssh/internal.h
Original file line number Diff line number Diff line change
Expand Up @@ -1362,6 +1362,7 @@ enum TerminalModes {
#define WOLFSSL_V5_7_0 0x05007000
#define WOLFSSL_V5_7_2 0x05007002
#define WOLFSSL_V5_7_0 0x05007000
#define WOLFSSL_V5_7_2 0x05007002


#ifdef __cplusplus
Expand Down

0 comments on commit b364c1a

Please sign in to comment.