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

Sun Yimin 2023-12-29 08:05:35 +08:00
parent 5cd543f3f7
commit 86ed2ec231

@ -1,6 +1,8 @@
这篇文章接续[SM2实现及优化](https://github.com/emmansun/gmsm/wiki/SM2%E6%80%A7%E8%83%BD%E4%BC%98%E5%8C%96)着重当前实现我说过目前纯golang实现通过[fiat-crypto](https://github.com/mit-plv/fiat-crypto)生成代码大家可以参考POC项目[sm2fiat](https://github.com/emmansun/sm2fiat)。
## 纯Go实现
* 通过[fiat-crypto](https://github.com/mit-plv/fiat-crypto)生成SM2曲线参数P的域运算主要是加减乘除平方。
* 通过[addchain](https://github.com/mmcloughlin/addchain)生成优化的求逆运算。
## amd64架构优化