From 330a45be782fdd3896d439846a873bc21401588c Mon Sep 17 00:00:00 2001 From: Sun Yimin Date: Fri, 29 Dec 2023 08:50:08 +0800 Subject: [PATCH] =?UTF-8?q?Updated=20SM2=E6=80=A7=E8=83=BD=E4=BC=98?= =?UTF-8?q?=E5=8C=96=EF=BC=88=E7=BB=AD=EF=BC=89=20(markdown)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- SM2性能优化(续).md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/SM2性能优化(续).md b/SM2性能优化(续).md index adf4e68..e59e192 100644 --- a/SM2性能优化(续).md +++ b/SM2性能优化(续).md @@ -21,7 +21,8 @@ prime order elliptic curves, §A.2](https://eprint.iacr.org/2015/1060)。这里 * 使用NEON指令实现SELECT、MOVE操作,请参考https://github.com/emmansun/gmsm/discussions/134 ## SM2签名、验签等算法优化 -* 改用bigmod代替```big.Int```,请参考[sm2/enc: use bigmod and sm2ec instead of math/big and crypto/elliptic]() +* 改用```bigmod```代替```big.Int```,请参考[use bigmod and sm2ec instead of math/big and crypto/elliptic](https://github.com/emmansun/gmsm/commit/a45e13d148db20f3068f3069b1cd04e41a121f91)等。 +* 优化签名算法,减少求逆操作。