From ab2bc3d819346649b80648ee0dde0e6d00cbe170 Mon Sep 17 00:00:00 2001 From: Sun Yimin Date: Tue, 21 May 2024 10:03:47 +0800 Subject: [PATCH] kdf-sm3: fix arm64 compile issue --- sm3/sm3blocks_arm64.s | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sm3/sm3blocks_arm64.s b/sm3/sm3blocks_arm64.s index d4bf642..fbe2797 100644 --- a/sm3/sm3blocks_arm64.s +++ b/sm3/sm3blocks_arm64.s @@ -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