2020-04-15 17:38:02 +00:00
|
|
|
# Constantine
|
|
|
|
# Copyright (c) 2018-2019 Status Research & Development GmbH
|
|
|
|
# Copyright (c) 2020-Present Mamy André-Ratsimbazafy
|
|
|
|
# Licensed and distributed under either of
|
|
|
|
# * MIT license (license terms in the root directory or at http://opensource.org/licenses/MIT).
|
|
|
|
# * Apache v2 license (license terms in the root directory or at http://www.apache.org/licenses/LICENSE-2.0).
|
|
|
|
# at your option. This file may not be copied, modified, or distributed except according to those terms.
|
|
|
|
|
|
|
|
import
|
|
|
|
# Internals
|
|
|
|
../constantine/config/curves,
|
|
|
|
../constantine/arithmetic,
|
2020-10-01 22:01:09 +00:00
|
|
|
../constantine/elliptic/[
|
|
|
|
ec_shortweierstrass_projective,
|
|
|
|
ec_shortweierstrass_jacobian],
|
2020-04-15 17:38:02 +00:00
|
|
|
# Helpers
|
|
|
|
../helpers/static_for,
|
|
|
|
./bench_elliptic_template,
|
|
|
|
# Standard library
|
|
|
|
std/strutils
|
|
|
|
|
|
|
|
# ############################################################
|
|
|
|
#
|
|
|
|
# Benchmark of the G1 group of
|
|
|
|
# Short Weierstrass elliptic curves
|
|
|
|
# in (homogeneous) projective coordinates
|
|
|
|
#
|
|
|
|
# ############################################################
|
|
|
|
|
|
|
|
|
2020-09-21 21:24:00 +00:00
|
|
|
const Iters = 10_000
|
|
|
|
const MulIters = 100
|
2020-04-15 17:38:02 +00:00
|
|
|
const AvailableCurves = [
|
|
|
|
# P224,
|
2020-10-10 16:53:48 +00:00
|
|
|
BN254_Nogami,
|
2020-04-15 17:38:02 +00:00
|
|
|
BN254_Snarks,
|
|
|
|
# Curve25519,
|
|
|
|
# P256,
|
|
|
|
# Secp256k1,
|
2020-09-27 07:15:14 +00:00
|
|
|
BLS12_377,
|
2020-04-15 17:38:02 +00:00
|
|
|
BLS12_381,
|
|
|
|
]
|
|
|
|
|
|
|
|
proc main() =
|
|
|
|
separator()
|
|
|
|
staticFor i, 0, AvailableCurves.len:
|
|
|
|
const curve = AvailableCurves[i]
|
2022-01-01 18:17:04 +00:00
|
|
|
addBench(ECP_ShortW_Prj[Fp[curve], G1], Iters)
|
|
|
|
addBench(ECP_ShortW_Jac[Fp[curve], G1], Iters)
|
|
|
|
mixedAddBench(ECP_ShortW_Prj[Fp[curve], G1], Iters)
|
|
|
|
mixedAddBench(ECP_ShortW_Jac[Fp[curve], G1], Iters)
|
|
|
|
doublingBench(ECP_ShortW_Prj[Fp[curve], G1], Iters)
|
|
|
|
doublingBench(ECP_ShortW_Jac[Fp[curve], G1], Iters)
|
2020-10-01 22:01:09 +00:00
|
|
|
separator()
|
2022-01-01 18:17:04 +00:00
|
|
|
affFromProjBench(ECP_ShortW_Prj[Fp[curve], G1], MulIters)
|
|
|
|
affFromJacBench(ECP_ShortW_Jac[Fp[curve], G1], MulIters)
|
2020-04-15 20:23:46 +00:00
|
|
|
separator()
|
2022-01-01 18:17:04 +00:00
|
|
|
scalarMulUnsafeDoubleAddBench(ECP_ShortW_Prj[Fp[curve], G1], MulIters)
|
|
|
|
scalarMulUnsafeDoubleAddBench(ECP_ShortW_Jac[Fp[curve], G1], MulIters)
|
2020-06-04 18:37:29 +00:00
|
|
|
separator()
|
2022-01-01 18:17:04 +00:00
|
|
|
scalarMulGenericBench(ECP_ShortW_Prj[Fp[curve], G1], window = 2, MulIters)
|
|
|
|
scalarMulGenericBench(ECP_ShortW_Prj[Fp[curve], G1], window = 3, MulIters)
|
|
|
|
scalarMulGenericBench(ECP_ShortW_Prj[Fp[curve], G1], window = 4, MulIters)
|
|
|
|
scalarMulGenericBench(ECP_ShortW_Prj[Fp[curve], G1], window = 5, MulIters)
|
|
|
|
scalarMulGenericBench(ECP_ShortW_Jac[Fp[curve], G1], window = 2, MulIters)
|
|
|
|
scalarMulGenericBench(ECP_ShortW_Jac[Fp[curve], G1], window = 3, MulIters)
|
|
|
|
scalarMulGenericBench(ECP_ShortW_Jac[Fp[curve], G1], window = 4, MulIters)
|
|
|
|
scalarMulGenericBench(ECP_ShortW_Jac[Fp[curve], G1], window = 5, MulIters)
|
2020-08-24 22:02:30 +00:00
|
|
|
separator()
|
2022-01-01 18:17:04 +00:00
|
|
|
scalarMulEndo(ECP_ShortW_Prj[Fp[curve], G1], MulIters)
|
|
|
|
scalarMulEndoWindow(ECP_ShortW_Prj[Fp[curve], G1], MulIters)
|
|
|
|
scalarMulEndo(ECP_ShortW_Jac[Fp[curve], G1], MulIters)
|
|
|
|
scalarMulEndoWindow(ECP_ShortW_Jac[Fp[curve], G1], MulIters)
|
2020-08-24 22:02:30 +00:00
|
|
|
separator()
|
|
|
|
separator()
|
2020-04-15 17:38:02 +00:00
|
|
|
|
|
|
|
main()
|
2020-07-24 20:02:30 +00:00
|
|
|
notes()
|