mirror of
https://github.com/codex-storage/constantine.git
synced 2025-01-12 20:14:08 +00:00
d84edcd217
* Pairing - initial commit - line functions - sparse Fp12 functions * Small fixes: - Line parametrized by twist for generic algorithm - Add a conjugate operator for quadratic extensions - Have frobenius use it - Create an Affine coordinate type for elliptic curve * Implement (failing) pairing test * Stash pairing debug session, temp switch Fp12 over Fp4 * Proper naive pairing on BLS12-381 * Frobenius map * Implement naive pairing for BN curves * Add pairing tests to CI + reduce time spent on lower-level tests * Test without assembler in Github Actions + less base layers test iterations
72 lines
2.0 KiB
Nim
72 lines
2.0 KiB
Nim
# 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,
|
|
../constantine/elliptic/ec_weierstrass_projective,
|
|
# 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
|
|
#
|
|
# ############################################################
|
|
|
|
|
|
const Iters = 10_000
|
|
const MulIters = 100
|
|
const AvailableCurves = [
|
|
# P224,
|
|
# BN254_Nogami,
|
|
BN254_Snarks,
|
|
# Curve25519,
|
|
# P256,
|
|
# Secp256k1,
|
|
# BLS12_377,
|
|
BLS12_381,
|
|
# BN446,
|
|
# FKM12_447,
|
|
# BLS12_461,
|
|
# BN462
|
|
]
|
|
|
|
proc main() =
|
|
separator()
|
|
staticFor i, 0, AvailableCurves.len:
|
|
const curve = AvailableCurves[i]
|
|
addBench(ECP_SWei_Proj[Fp[curve]], Iters)
|
|
separator()
|
|
doublingBench(ECP_SWei_Proj[Fp[curve]], Iters)
|
|
separator()
|
|
scalarMulUnsafeDoubleAddBench(ECP_SWei_Proj[Fp[curve]], MulIters)
|
|
separator()
|
|
scalarMulGenericBench(ECP_SWei_Proj[Fp[curve]], window = 2, MulIters)
|
|
separator()
|
|
scalarMulGenericBench(ECP_SWei_Proj[Fp[curve]], window = 3, MulIters)
|
|
separator()
|
|
scalarMulGenericBench(ECP_SWei_Proj[Fp[curve]], window = 4, MulIters)
|
|
separator()
|
|
scalarMulGenericBench(ECP_SWei_Proj[Fp[curve]], window = 5, MulIters)
|
|
separator()
|
|
scalarMulEndo(ECP_SWei_Proj[Fp[curve]], MulIters)
|
|
separator()
|
|
scalarMulEndoWindow(ECP_SWei_Proj[Fp[curve]], MulIters)
|
|
separator()
|
|
separator()
|
|
|
|
main()
|
|
notes()
|