Skip to content

Commit

Permalink
Merge pull request #7574 from douzzer/20240522-quantum-safe-linuxkm
Browse files Browse the repository at this point in the history
20240522-quantum-safe-linuxkm
  • Loading branch information
dgarske committed May 24, 2024
2 parents 76e7d86 + 5c497c6 commit 51f19f4
Show file tree
Hide file tree
Showing 3 changed files with 317 additions and 116 deletions.
23 changes: 23 additions & 0 deletions linuxkm/module_exports.c.template
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,29 @@
#include <wolfssl/wolfcrypt/kdf.h>
#endif

#ifdef WOLFSSL_HAVE_KYBER
#include <wolfssl/wolfcrypt/kyber.h>
#ifdef WOLFSSL_WC_KYBER
#include <wolfssl/wolfcrypt/wc_kyber.h>
#endif
#endif
#if defined(WOLFSSL_HAVE_XMSS)
#include <wolfssl/wolfcrypt/xmss.h>
#ifdef HAVE_LIBXMSS
#include <wolfssl/wolfcrypt/ext_xmss.h>
#else
#include <wolfssl/wolfcrypt/wc_xmss.h>
#endif
#endif
#if defined(WOLFSSL_HAVE_LMS)
#include <wolfssl/wolfcrypt/lms.h>
#ifdef HAVE_LIBLMS
#include <wolfssl/wolfcrypt/ext_lms.h>
#else
#include <wolfssl/wolfcrypt/wc_lms.h>
#endif
#endif

#ifdef OPENSSL_EXTRA
#ifndef WOLFCRYPT_ONLY
#include <wolfssl/openssl/evp.h>
Expand Down
Loading

0 comments on commit 51f19f4

Please sign in to comment.