Skip to content

Commit

Permalink
kdf-sm3: fix arm64 compile issue
Browse files Browse the repository at this point in the history
  • Loading branch information
emmansun authored May 21, 2024
1 parent 97d2852 commit ab2bc3d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sm3/sm3blocks_arm64.s
Original file line number Diff line number Diff line change
Expand Up @@ -111,9 +111,9 @@
VEOR V11.B16, V10.B16, V11.B16 \
VST1.P V11.S4, 16(wordPtr) \

#define ROUND_12_15(index, a, b, c, d, e, f, g, h) \
#define ROUND_12_15(index, const, a, b, c, d, e, f, g, h) \
MESSAGE_SCHEDULE(index) \
ROUND_00_11(index, a, b, c, d, e, f, g, h) \
ROUND_00_11(index, const, a, b, c, d, e, f, g, h) \

#define ROUND_16_63(index, const, a, b, c, d, e, f, g, h) \
MESSAGE_SCHEDULE(index); \ // V11 is Wt+4 now, Pls do not use it
Expand Down

0 comments on commit ab2bc3d

Please sign in to comment.