Updated SM2性能优化(续) (markdown)

Sun Yimin 2023-12-29 08:52:11 +08:00
parent 4cefe321b9
commit 0c152864c1

@ -10,7 +10,7 @@ prime order elliptic curves, §A.2](https://eprint.iacr.org/2015/1060)。这里
## amd64 arm64架构实现
总体而言,和以前实现相比,变化不大。
* 基点标量乘法查找表生成,没有重新写生成方法,延用以前的,可以参考[gen_p256_table.go](https://github.com/emmansun/gmsm/blob/go_1.16/sm2/gen_p256_table.go)。
* 基点标量乘法查找表生成,没有重新写生成方法,延用以前的实现,可以参考[gen_p256_table.go](https://github.com/emmansun/gmsm/blob/go_1.16/sm2/gen_p256_table.go)。
* 调整了点标量乘法的窗口大小,具体请参考[sm2 point scalar multiple ASM implementation issue: final p256PointAddAsm's input maybe equal](https://github.com/emmansun/gmsm/discussions/127)
### amd64架构优化