mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-12 04:42:36 -03:00
b2135359b3
7a49cac
Merge #410: Add string.h include to ecmult_impl0bbd5d4
Add string.h include to ecmult_implc5b32e1
Merge #405: Make secp256k1_fe_sqrt constant time926836a
Make secp256k1_fe_sqrt constant timee2a8e92
Merge #404: Replace 3M + 4S doubling formula with 2M + 5S one8ec49d8
Add note about 2M + 5S doubling formula5a91bd7
Merge #400: A couple minor cleanupsac01378
build: add -DSECP256K1_BUILD to benchmark_internal build flagsa6c6f99
Remove a bunch of unused stdlib #includes65285a6
Merge #403: configure: add flag to disable OpenSSL testsa9b2a5d
configure: add flag to disable OpenSSL testsb340123
Merge #402: Add support for testing quadratic residuese6e9805
Add function for testing quadratic residue field/group elements.efd953a
Add Jacobi symbol test via GMPfa36a0d
Merge #401: ecmult_const: unify endomorphism and non-endomorphism skew casesc6191fd
ecmult_const: unify endomorphism and non-endomorphism skew cases0b3e618
Merge #378: .gitignore build-aux cleanup6042217
Merge #384: JNI: align shared files copyright/comments to bitcoinj's24ad20f
Merge #399: build: verify that the native compiler works for static precompb3be852
Merge #398: Test whether ECDH and Schnorr are enabled for JNIaa0b1fd
build: verify that the native compiler works for static precompeee808d
Test whether ECDH and Schnorr are enabled for JNI7b0fb18
Merge #366: ARM assembly implementation of field_10x26 inner (rebase of #173)001f176
ARM assembly implementation of field_10x26 inner0172be9
Merge #397: Small fixes for sha2563f8b78e
Fix undefs in hash_impl.h2ab4695
Fix state size in sha256 struct6875b01
Merge #386: Add some missing `VERIFY_CHECK(ctx != NULL)`2c52b5d
Merge #389: Cast pointers through uintptr_t under JNI43097a4
Merge #390: Update bitcoin-core GitHub links31c9c12
Merge #391: JNI: Only call ecdsa_verify if its inputs parsed correctly1cb2302
Merge #392: Add testcase which hits additional branch in secp256k1_scalar_sqrd2ee340
Merge #388: bench_ecdh: fix call to secp256k1_context_create093a497
Add testcase which hits additional branch in secp256k1_scalar_sqra40c701
JNI: Only call ecdsa_verify if its inputs parsed correctlyfaa2a11
Update bitcoin-core GitHub links47b9e78
Cast pointers through uintptr_t under JNIf36f9c6
bench_ecdh: fix call to secp256k1_context_createbcc4881
Add some missing `VERIFY_CHECK(ctx != NULL)` for functions that use `ARG_CHECK`6ceea2c
align shared files copyright/comments to bitcoinj's70141a8
Update .gitignore7b549b1
Merge #373: build: fix x86_64 asm detection for some compilersbc7c93c
Merge #374: Add note about y=0 being possible on one of the sextic twistse457018
Merge #364: JNI rebased86e2d07
JNI library: cleanup, removed unimplemented code3093576a
JNI librarybd2895f
Merge pull request #371e72e93a
Add note about y=0 being possible on one of the sextic twists3f8fdfb
build: fix x86_64 asm detection for some compilerse5a9047
[Trivial] Remove double semicolonsc18b869
Merge pull request #3603026daa
Merge pull request #30203d4611
Add sage verification script for the group lawsa965937
Merge pull request #36183221ec
Add experimental features to configure5d4c5a3
Prevent damage_array in the signature test from going out of bounds.419bf7f
Merge pull request #35603d84a4
Benchmark against OpenSSL verification git-subtree-dir: src/secp256k1 git-subtree-split:7a49cacd39
306 lines
8.6 KiB
Python
306 lines
8.6 KiB
Python
# Test libsecp256k1' group operation implementations using prover.sage
|
|
|
|
import sys
|
|
|
|
load("group_prover.sage")
|
|
load("weierstrass_prover.sage")
|
|
|
|
def formula_secp256k1_gej_double_var(a):
|
|
"""libsecp256k1's secp256k1_gej_double_var, used by various addition functions"""
|
|
rz = a.Z * a.Y
|
|
rz = rz * 2
|
|
t1 = a.X^2
|
|
t1 = t1 * 3
|
|
t2 = t1^2
|
|
t3 = a.Y^2
|
|
t3 = t3 * 2
|
|
t4 = t3^2
|
|
t4 = t4 * 2
|
|
t3 = t3 * a.X
|
|
rx = t3
|
|
rx = rx * 4
|
|
rx = -rx
|
|
rx = rx + t2
|
|
t2 = -t2
|
|
t3 = t3 * 6
|
|
t3 = t3 + t2
|
|
ry = t1 * t3
|
|
t2 = -t4
|
|
ry = ry + t2
|
|
return jacobianpoint(rx, ry, rz)
|
|
|
|
def formula_secp256k1_gej_add_var(branch, a, b):
|
|
"""libsecp256k1's secp256k1_gej_add_var"""
|
|
if branch == 0:
|
|
return (constraints(), constraints(nonzero={a.Infinity : 'a_infinite'}), b)
|
|
if branch == 1:
|
|
return (constraints(), constraints(zero={a.Infinity : 'a_finite'}, nonzero={b.Infinity : 'b_infinite'}), a)
|
|
z22 = b.Z^2
|
|
z12 = a.Z^2
|
|
u1 = a.X * z22
|
|
u2 = b.X * z12
|
|
s1 = a.Y * z22
|
|
s1 = s1 * b.Z
|
|
s2 = b.Y * z12
|
|
s2 = s2 * a.Z
|
|
h = -u1
|
|
h = h + u2
|
|
i = -s1
|
|
i = i + s2
|
|
if branch == 2:
|
|
r = formula_secp256k1_gej_double_var(a)
|
|
return (constraints(), constraints(zero={h : 'h=0', i : 'i=0', a.Infinity : 'a_finite', b.Infinity : 'b_finite'}), r)
|
|
if branch == 3:
|
|
return (constraints(), constraints(zero={h : 'h=0', a.Infinity : 'a_finite', b.Infinity : 'b_finite'}, nonzero={i : 'i!=0'}), point_at_infinity())
|
|
i2 = i^2
|
|
h2 = h^2
|
|
h3 = h2 * h
|
|
h = h * b.Z
|
|
rz = a.Z * h
|
|
t = u1 * h2
|
|
rx = t
|
|
rx = rx * 2
|
|
rx = rx + h3
|
|
rx = -rx
|
|
rx = rx + i2
|
|
ry = -rx
|
|
ry = ry + t
|
|
ry = ry * i
|
|
h3 = h3 * s1
|
|
h3 = -h3
|
|
ry = ry + h3
|
|
return (constraints(), constraints(zero={a.Infinity : 'a_finite', b.Infinity : 'b_finite'}, nonzero={h : 'h!=0'}), jacobianpoint(rx, ry, rz))
|
|
|
|
def formula_secp256k1_gej_add_ge_var(branch, a, b):
|
|
"""libsecp256k1's secp256k1_gej_add_ge_var, which assume bz==1"""
|
|
if branch == 0:
|
|
return (constraints(zero={b.Z - 1 : 'b.z=1'}), constraints(nonzero={a.Infinity : 'a_infinite'}), b)
|
|
if branch == 1:
|
|
return (constraints(zero={b.Z - 1 : 'b.z=1'}), constraints(zero={a.Infinity : 'a_finite'}, nonzero={b.Infinity : 'b_infinite'}), a)
|
|
z12 = a.Z^2
|
|
u1 = a.X
|
|
u2 = b.X * z12
|
|
s1 = a.Y
|
|
s2 = b.Y * z12
|
|
s2 = s2 * a.Z
|
|
h = -u1
|
|
h = h + u2
|
|
i = -s1
|
|
i = i + s2
|
|
if (branch == 2):
|
|
r = formula_secp256k1_gej_double_var(a)
|
|
return (constraints(zero={b.Z - 1 : 'b.z=1'}), constraints(zero={a.Infinity : 'a_finite', b.Infinity : 'b_finite', h : 'h=0', i : 'i=0'}), r)
|
|
if (branch == 3):
|
|
return (constraints(zero={b.Z - 1 : 'b.z=1'}), constraints(zero={a.Infinity : 'a_finite', b.Infinity : 'b_finite', h : 'h=0'}, nonzero={i : 'i!=0'}), point_at_infinity())
|
|
i2 = i^2
|
|
h2 = h^2
|
|
h3 = h * h2
|
|
rz = a.Z * h
|
|
t = u1 * h2
|
|
rx = t
|
|
rx = rx * 2
|
|
rx = rx + h3
|
|
rx = -rx
|
|
rx = rx + i2
|
|
ry = -rx
|
|
ry = ry + t
|
|
ry = ry * i
|
|
h3 = h3 * s1
|
|
h3 = -h3
|
|
ry = ry + h3
|
|
return (constraints(zero={b.Z - 1 : 'b.z=1'}), constraints(zero={a.Infinity : 'a_finite', b.Infinity : 'b_finite'}, nonzero={h : 'h!=0'}), jacobianpoint(rx, ry, rz))
|
|
|
|
def formula_secp256k1_gej_add_zinv_var(branch, a, b):
|
|
"""libsecp256k1's secp256k1_gej_add_zinv_var"""
|
|
bzinv = b.Z^(-1)
|
|
if branch == 0:
|
|
return (constraints(), constraints(nonzero={b.Infinity : 'b_infinite'}), a)
|
|
if branch == 1:
|
|
bzinv2 = bzinv^2
|
|
bzinv3 = bzinv2 * bzinv
|
|
rx = b.X * bzinv2
|
|
ry = b.Y * bzinv3
|
|
rz = 1
|
|
return (constraints(), constraints(zero={b.Infinity : 'b_finite'}, nonzero={a.Infinity : 'a_infinite'}), jacobianpoint(rx, ry, rz))
|
|
azz = a.Z * bzinv
|
|
z12 = azz^2
|
|
u1 = a.X
|
|
u2 = b.X * z12
|
|
s1 = a.Y
|
|
s2 = b.Y * z12
|
|
s2 = s2 * azz
|
|
h = -u1
|
|
h = h + u2
|
|
i = -s1
|
|
i = i + s2
|
|
if branch == 2:
|
|
r = formula_secp256k1_gej_double_var(a)
|
|
return (constraints(), constraints(zero={a.Infinity : 'a_finite', b.Infinity : 'b_finite', h : 'h=0', i : 'i=0'}), r)
|
|
if branch == 3:
|
|
return (constraints(), constraints(zero={a.Infinity : 'a_finite', b.Infinity : 'b_finite', h : 'h=0'}, nonzero={i : 'i!=0'}), point_at_infinity())
|
|
i2 = i^2
|
|
h2 = h^2
|
|
h3 = h * h2
|
|
rz = a.Z
|
|
rz = rz * h
|
|
t = u1 * h2
|
|
rx = t
|
|
rx = rx * 2
|
|
rx = rx + h3
|
|
rx = -rx
|
|
rx = rx + i2
|
|
ry = -rx
|
|
ry = ry + t
|
|
ry = ry * i
|
|
h3 = h3 * s1
|
|
h3 = -h3
|
|
ry = ry + h3
|
|
return (constraints(), constraints(zero={a.Infinity : 'a_finite', b.Infinity : 'b_finite'}, nonzero={h : 'h!=0'}), jacobianpoint(rx, ry, rz))
|
|
|
|
def formula_secp256k1_gej_add_ge(branch, a, b):
|
|
"""libsecp256k1's secp256k1_gej_add_ge"""
|
|
zeroes = {}
|
|
nonzeroes = {}
|
|
a_infinity = False
|
|
if (branch & 4) != 0:
|
|
nonzeroes.update({a.Infinity : 'a_infinite'})
|
|
a_infinity = True
|
|
else:
|
|
zeroes.update({a.Infinity : 'a_finite'})
|
|
zz = a.Z^2
|
|
u1 = a.X
|
|
u2 = b.X * zz
|
|
s1 = a.Y
|
|
s2 = b.Y * zz
|
|
s2 = s2 * a.Z
|
|
t = u1
|
|
t = t + u2
|
|
m = s1
|
|
m = m + s2
|
|
rr = t^2
|
|
m_alt = -u2
|
|
tt = u1 * m_alt
|
|
rr = rr + tt
|
|
degenerate = (branch & 3) == 3
|
|
if (branch & 1) != 0:
|
|
zeroes.update({m : 'm_zero'})
|
|
else:
|
|
nonzeroes.update({m : 'm_nonzero'})
|
|
if (branch & 2) != 0:
|
|
zeroes.update({rr : 'rr_zero'})
|
|
else:
|
|
nonzeroes.update({rr : 'rr_nonzero'})
|
|
rr_alt = s1
|
|
rr_alt = rr_alt * 2
|
|
m_alt = m_alt + u1
|
|
if not degenerate:
|
|
rr_alt = rr
|
|
m_alt = m
|
|
n = m_alt^2
|
|
q = n * t
|
|
n = n^2
|
|
if degenerate:
|
|
n = m
|
|
t = rr_alt^2
|
|
rz = a.Z * m_alt
|
|
infinity = False
|
|
if (branch & 8) != 0:
|
|
if not a_infinity:
|
|
infinity = True
|
|
zeroes.update({rz : 'r.z=0'})
|
|
else:
|
|
nonzeroes.update({rz : 'r.z!=0'})
|
|
rz = rz * 2
|
|
q = -q
|
|
t = t + q
|
|
rx = t
|
|
t = t * 2
|
|
t = t + q
|
|
t = t * rr_alt
|
|
t = t + n
|
|
ry = -t
|
|
rx = rx * 4
|
|
ry = ry * 4
|
|
if a_infinity:
|
|
rx = b.X
|
|
ry = b.Y
|
|
rz = 1
|
|
if infinity:
|
|
return (constraints(zero={b.Z - 1 : 'b.z=1', b.Infinity : 'b_finite'}), constraints(zero=zeroes, nonzero=nonzeroes), point_at_infinity())
|
|
return (constraints(zero={b.Z - 1 : 'b.z=1', b.Infinity : 'b_finite'}), constraints(zero=zeroes, nonzero=nonzeroes), jacobianpoint(rx, ry, rz))
|
|
|
|
def formula_secp256k1_gej_add_ge_old(branch, a, b):
|
|
"""libsecp256k1's old secp256k1_gej_add_ge, which fails when ay+by=0 but ax!=bx"""
|
|
a_infinity = (branch & 1) != 0
|
|
zero = {}
|
|
nonzero = {}
|
|
if a_infinity:
|
|
nonzero.update({a.Infinity : 'a_infinite'})
|
|
else:
|
|
zero.update({a.Infinity : 'a_finite'})
|
|
zz = a.Z^2
|
|
u1 = a.X
|
|
u2 = b.X * zz
|
|
s1 = a.Y
|
|
s2 = b.Y * zz
|
|
s2 = s2 * a.Z
|
|
z = a.Z
|
|
t = u1
|
|
t = t + u2
|
|
m = s1
|
|
m = m + s2
|
|
n = m^2
|
|
q = n * t
|
|
n = n^2
|
|
rr = t^2
|
|
t = u1 * u2
|
|
t = -t
|
|
rr = rr + t
|
|
t = rr^2
|
|
rz = m * z
|
|
infinity = False
|
|
if (branch & 2) != 0:
|
|
if not a_infinity:
|
|
infinity = True
|
|
else:
|
|
return (constraints(zero={b.Z - 1 : 'b.z=1', b.Infinity : 'b_finite'}), constraints(nonzero={z : 'conflict_a'}, zero={z : 'conflict_b'}), point_at_infinity())
|
|
zero.update({rz : 'r.z=0'})
|
|
else:
|
|
nonzero.update({rz : 'r.z!=0'})
|
|
rz = rz * (0 if a_infinity else 2)
|
|
rx = t
|
|
q = -q
|
|
rx = rx + q
|
|
q = q * 3
|
|
t = t * 2
|
|
t = t + q
|
|
t = t * rr
|
|
t = t + n
|
|
ry = -t
|
|
rx = rx * (0 if a_infinity else 4)
|
|
ry = ry * (0 if a_infinity else 4)
|
|
t = b.X
|
|
t = t * (1 if a_infinity else 0)
|
|
rx = rx + t
|
|
t = b.Y
|
|
t = t * (1 if a_infinity else 0)
|
|
ry = ry + t
|
|
t = (1 if a_infinity else 0)
|
|
rz = rz + t
|
|
if infinity:
|
|
return (constraints(zero={b.Z - 1 : 'b.z=1', b.Infinity : 'b_finite'}), constraints(zero=zero, nonzero=nonzero), point_at_infinity())
|
|
return (constraints(zero={b.Z - 1 : 'b.z=1', b.Infinity : 'b_finite'}), constraints(zero=zero, nonzero=nonzero), jacobianpoint(rx, ry, rz))
|
|
|
|
if __name__ == "__main__":
|
|
check_symbolic_jacobian_weierstrass("secp256k1_gej_add_var", 0, 7, 5, formula_secp256k1_gej_add_var)
|
|
check_symbolic_jacobian_weierstrass("secp256k1_gej_add_ge_var", 0, 7, 5, formula_secp256k1_gej_add_ge_var)
|
|
check_symbolic_jacobian_weierstrass("secp256k1_gej_add_zinv_var", 0, 7, 5, formula_secp256k1_gej_add_zinv_var)
|
|
check_symbolic_jacobian_weierstrass("secp256k1_gej_add_ge", 0, 7, 16, formula_secp256k1_gej_add_ge)
|
|
check_symbolic_jacobian_weierstrass("secp256k1_gej_add_ge_old [should fail]", 0, 7, 4, formula_secp256k1_gej_add_ge_old)
|
|
|
|
if len(sys.argv) >= 2 and sys.argv[1] == "--exhaustive":
|
|
check_exhaustive_jacobian_weierstrass("secp256k1_gej_add_var", 0, 7, 5, formula_secp256k1_gej_add_var, 43)
|
|
check_exhaustive_jacobian_weierstrass("secp256k1_gej_add_ge_var", 0, 7, 5, formula_secp256k1_gej_add_ge_var, 43)
|
|
check_exhaustive_jacobian_weierstrass("secp256k1_gej_add_zinv_var", 0, 7, 5, formula_secp256k1_gej_add_zinv_var, 43)
|
|
check_exhaustive_jacobian_weierstrass("secp256k1_gej_add_ge", 0, 7, 16, formula_secp256k1_gej_add_ge, 43)
|
|
check_exhaustive_jacobian_weierstrass("secp256k1_gej_add_ge_old [should fail]", 0, 7, 4, formula_secp256k1_gej_add_ge_old, 43)
|