Skip to content

Commit

Permalink
Merge branch 'awslabs:main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
jargh authored Jul 27, 2023
2 parents 5e9277b + ec076f9 commit 04f64a0
Show file tree
Hide file tree
Showing 24 changed files with 17,972 additions and 130 deletions.
7 changes: 7 additions & 0 deletions arm/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -117,22 +117,29 @@ BIGNUM_OBJ = curve25519/bignum_add_p25519.o \
curve25519/bignum_sqr_p25519_alt.o \
curve25519/bignum_sub_p25519.o \
fastmul/bignum_emontredc_8n.o \
fastmul/bignum_emontredc_8n_neon.o \
fastmul/bignum_kmul_16_32.o \
fastmul/bignum_kmul_16_32_neon.o \
fastmul/bignum_kmul_32_64.o \
fastmul/bignum_kmul_32_64_neon.o \
fastmul/bignum_ksqr_16_32.o \
fastmul/bignum_ksqr_16_32_neon.o \
fastmul/bignum_ksqr_32_64.o \
fastmul/bignum_ksqr_32_64_neon.o \
fastmul/bignum_mul_4_8.o \
fastmul/bignum_mul_4_8_alt.o \
fastmul/bignum_mul_6_12.o \
fastmul/bignum_mul_6_12_alt.o \
fastmul/bignum_mul_8_16.o \
fastmul/bignum_mul_8_16_alt.o \
fastmul/bignum_mul_8_16_neon.o \
fastmul/bignum_sqr_4_8.o \
fastmul/bignum_sqr_4_8_alt.o \
fastmul/bignum_sqr_6_12.o \
fastmul/bignum_sqr_6_12_alt.o \
fastmul/bignum_sqr_8_16.o \
fastmul/bignum_sqr_8_16_alt.o \
fastmul/bignum_sqr_8_16_neon.o \
generic/bignum_add.o \
generic/bignum_amontifier.o \
generic/bignum_amontmul.o \
Expand Down
9 changes: 8 additions & 1 deletion arm/fastmul/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -22,22 +22,29 @@ endif
# List of object files

OBJ = bignum_emontredc_8n.o \
bignum_emontredc_8n_neon.o \
bignum_kmul_16_32.o \
bignum_kmul_16_32_neon.o \
bignum_kmul_32_64.o \
bignum_kmul_32_64_neon.o \
bignum_ksqr_16_32.o \
bignum_ksqr_16_32_neon.o \
bignum_ksqr_32_64.o \
bignum_ksqr_32_64_neon.o \
bignum_mul_4_8.o \
bignum_mul_4_8_alt.o \
bignum_mul_6_12.o \
bignum_mul_6_12_alt.o \
bignum_mul_8_16.o \
bignum_mul_8_16_alt.o \
bignum_mul_8_16_neon.o \
bignum_sqr_4_8.o \
bignum_sqr_4_8_alt.o \
bignum_sqr_6_12.o \
bignum_sqr_6_12_alt.o \
bignum_sqr_8_16.o \
bignum_sqr_8_16_alt.o
bignum_sqr_8_16_alt.o \
bignum_sqr_8_16_neon.o

%.o : %.S ; $(CC) -E -I../../include $< | $(GAS) -o $@ -

Expand Down
Loading

0 comments on commit 04f64a0

Please sign in to comment.