Now passing finite field test vs GMP

This commit is contained in:
Mamy André-Ratsimbazafy 2020-02-16 19:08:19 +01:00
parent c3d458e31b
commit a1801e26a0
No known key found for this signature in database
GPG Key ID: 7B88AD1FE79492E1
3 changed files with 109 additions and 3 deletions

View File

@ -31,7 +31,7 @@ macro randomTests(numTests: static int, curveSym, body: untyped): untyped =
result = newStmtList()
for _ in 0 ..< numTests:
let curve = RNG.rand(Curve.low .. Curve.high)
let curve = RNG.rand([BN254, BLS12_381])
result.add quote do:
block:
@ -68,8 +68,6 @@ proc main() =
# echo "--------------------------------------------------------------------------------"
echo "Testing: random input on ", $curve
static: echo typeof(CurveParams[curve])
const bits = CurveParams[curve][0]
# Generate random value in the range 0 ..< 2^(bits-1)

106
tests/test_io_fields.nim Normal file
View File

@ -0,0 +1,106 @@
# 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 unittest, random,
../constantine/io/[io_bigints, io_fields],
../constantine/config/curves,
../constantine/config/common,
../constantine/math/[bigints_checked, finite_fields]
randomize(0xDEADBEEF) # Random seed for reproducibility
type T = BaseType
proc main() =
suite "IO - Finite fields":
test "Parsing and serializing round-trip on uint64":
block:
# "Little-endian" - 0
let x = 0'u64
let x_bytes = cast[array[8, byte]](x)
var f: Fq[Mersenne61]
f.fromUint(x)
var r_bytes: array[8, byte]
serializeRawUint(r_bytes, f, littleEndian)
check: x_bytes == r_bytes
block:
# "Little-endian" - 1
let x = 1'u64
let x_bytes = cast[array[8, byte]](x)
var f: Fq[Mersenne61]
f.fromUint(x)
var r_bytes: array[8, byte]
serializeRawUint(r_bytes, f, littleEndian)
check: x_bytes == r_bytes
block:
# "Little-endian" - 2^31
let x = 1'u64 shl 31
let x_bytes = cast[array[8, byte]](x)
var f: Fq[Mersenne61]
f.fromUint(x)
var r_bytes: array[8, byte]
serializeRawUint(r_bytes, f, littleEndian)
check: x_bytes == r_bytes
block:
# "Little-endian" - 2^32
let x = 1'u64 shl 32
let x_bytes = cast[array[8, byte]](x)
var f: Fq[Mersenne61]
f.fromUint(x)
var r_bytes: array[8, byte]
serializeRawUint(r_bytes, f, littleEndian)
check: x_bytes == r_bytes
# Mersenne 127 ---------------------------------
block:
# "Little-endian" - 2^63
let x = 1'u64 shl 63
let x_bytes = cast[array[8, byte]](x)
var f: Fq[Mersenne127]
f.fromUint(x)
var r_bytes: array[16, byte]
serializeRawUint(r_bytes, f, littleEndian)
check: x_bytes == r_bytes[0 ..< 8]
block: # "Little-endian" - single random
let x = uint64 rand(0..high(int))
let x_bytes = cast[array[8, byte]](x)
var f: Fq[Mersenne127]
f.fromUint(x)
var r_bytes: array[16, byte]
serializeRawUint(r_bytes, f, littleEndian)
check: x_bytes == r_bytes[0 ..< 8]
block: # "Little-endian" - 10 random cases
for _ in 0 ..< 10:
let x = uint64 rand(0..high(int))
let x_bytes = cast[array[8, byte]](x)
var f: Fq[Mersenne127]
f.fromUint(x)
var r_bytes: array[16, byte]
serializeRawUint(r_bytes, f, littleEndian)
check: x_bytes == r_bytes[0 ..< 8]
test "Round trip on large constant":
block: # 2^126
const p = "0x40000000000000000000000000000000"
let x = Fq[Mersenne127].fromBig BigInt[127].fromHex(p)
let hex = x.toHex(bigEndian)
check: p == hex
main()

View File

@ -0,0 +1,2 @@
-d:testingCurves
-d:debugConstantine