优化性能:使用c或者rust重写ecc计算模块 #29
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
也可以尝试使用pypy,但是需要测试兼容性
在ecc_rs中实现,但是速度不理想。pypy好像跟gmssl不兼容?
6c240b1237
ecc_rs中实现,速度有提升
可以尝试用uint取代biguint。uint是固定长度,在栈上分配。biguint是堆上分配,创建销毁都有性能损耗。
迁移到eccrs中sangge/ecc_rs#1