Skip to content

Commit

Permalink
filename change test
Browse files Browse the repository at this point in the history
  • Loading branch information
jakemas committed Jan 9, 2025
1 parent 2bf5dfa commit 7e96688
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions crypto/fipsmodule/ml_dsa/ml_dsa.c
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@

// These includes are required to compile ML-DSA. These can be moved to bcm.c
// when ML-DSA is added to the fipsmodule directory.
#include "./ml_dsa_ref/ntt.c"
#include "./ml_dsa_ref/ml_dsa_ntt.c"
#include "./ml_dsa_ref/packing.c"
#include "./ml_dsa_ref/params.c"
#include "./ml_dsa_ref/poly.c"
#include "./ml_dsa_ref/polyvec.c"
#include "./ml_dsa_ref/reduce.c"
#include "./ml_dsa_ref/ml_dsa_params.c"
#include "./ml_dsa_ref/ml_dsa_poly.c"
#include "./ml_dsa_ref/ml_dsa_polyvec.c"
#include "./ml_dsa_ref/ml_dsa_reduce.c"
#include "./ml_dsa_ref/rounding.c"
#include "./ml_dsa_ref/sign.c"

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include <stdint.h>
#include "params.h"
#include "ntt.h"
#include "ml_dsa_ntt.h"
#include "reduce.h"

static const int32_t zetas[ML_DSA_N] = {
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#include <stdint.h>
#include "params.h"
#include "poly.h"
#include "ntt.h"
#include "ml_dsa_ntt.h"
#include "reduce.h"
#include "rounding.h"
#include "../../sha/internal.h"
Expand Down

0 comments on commit 7e96688

Please sign in to comment.