You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Improves keccak256 perf
Compared to nimcrypto, this keccak impl from tuned
Boring SSL only takes average 24 units of time, and nimcrypto
takes 43 units of time.
In addition to that, two hash function specialized for
Address and Hash32 also further improves hashing speed.
Address/20 bytes input length: takes 5 units of time compared
to general hash 9 units of time.
Hash32/32 bytes input length: takes 2 units of time compared
to general hash 4 units of time. (Data size alignment improves
hash time significantly)
* Bump nim-eth
* Fix tests
* Oops
0 commit comments