bench-curve25519-dalek #68
Labels
D-easy
An easy issue that might be good for someone new
K-performance
Performance optimization
P-low
Low priority
Milestone
We should've some well optimized cryptographic code in the benchmarks.
As symmetric, I'd think blake2s hashing some pre-prepared random data.
As asymmetric, it's simplest to do curve25519-dalek I think. I suppose criterion does not fit VM benchmarks so well, so doing
cargo bench
maybe annoying. A simpler useful benchmark would be a variable base multi-scalar multiplication. In other words, invoke<EdwardsPoint as VartimeMultiscalarMul>::vartime_multiscalar_mul
on some pre-prepared random points and scalars. We could do single scalar multiplications instead, but an MSM maybe gives a more meaningful comparison, thanks to being heavier.Arkworks curve sound relevant of course, but one thing at a time. As curve25519-dalek is single threaded on all platforms, it's slightly easier to get honest benchmarks, and tells largely the same story. It's possible curve25519-dalek still needs backend features for some VMs, but likely still simpler than similar in arkworks.
The text was updated successfully, but these errors were encountered: