2020-03-21 00:59:23 +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
|
2020-04-14 00:05:42 +00:00
|
|
|
|
../constantine/towers,
|
2020-04-14 20:40:10 +00:00
|
|
|
|
../constantine/config/curves,
|
2020-03-21 00:59:23 +00:00
|
|
|
|
# Test utilities
|
2020-06-15 21:15:01 +00:00
|
|
|
|
./t_fp_tower_template
|
2020-04-14 20:40:10 +00:00
|
|
|
|
|
|
|
|
|
const TestCurves = [
|
2020-06-15 20:58:56 +00:00
|
|
|
|
BLS12_381
|
2020-04-14 20:40:10 +00:00
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
runTowerTests(
|
|
|
|
|
ExtDegree = 6,
|
2020-09-03 21:30:39 +00:00
|
|
|
|
Iters = 24,
|
2020-04-14 20:40:10 +00:00
|
|
|
|
TestCurves = TestCurves,
|
2020-06-15 20:58:56 +00:00
|
|
|
|
moduleName = "test_fp6_" & $BLS12_381,
|
|
|
|
|
testSuiteDesc = "𝔽p6 = 𝔽p2[v] " & $BLS12_381
|
2020-04-14 20:40:10 +00:00
|
|
|
|
)
|