From 123f2c6c0f8bde85e7137dfb19f72c5014e07023 Mon Sep 17 00:00:00 2001 From: ludorum Date: Tue, 16 Jul 2019 15:38:17 +0900 Subject: [PATCH] delete unused lines ecdsa.py --- gxcutil/ecc/ecdsa.py | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/gxcutil/ecc/ecdsa.py b/gxcutil/ecc/ecdsa.py index fac98c2..45194fa 100644 --- a/gxcutil/ecc/ecdsa.py +++ b/gxcutil/ecc/ecdsa.py @@ -34,11 +34,7 @@ def _get_recovery_param(hash_data: int, r: int, s: int, pub_x: int, pub_y: int, curve = Secp256k1 R = ECCPoint(r, None, curve) - # nR = R.multiply(curve.n) - # if nR is not None: - # raise RuntimeError('nR is not INF') - # data_neg = (-data) % curve.n data_neg = curve.n - hash_data data_neg_G = curve.G.multiply(data_neg, cache) r_inv = mod_inv(r, curve.n) @@ -49,16 +45,8 @@ def _get_recovery_param(hash_data: int, r: int, s: int, pub_x: int, pub_y: int, if Q.x == pub_x and Q.y == pub_y: return R.y & 1 - # R = -R - # Q = R.multiply(s) + data_neg_G - # Q = Q.multiply(r_inv) - # - # if Q.x == pub_x and Q.y == pub_y: - # return R.y & 1 return 1 - (R.y & 1) - # return None - def sign(key: int, hash_data: int, pub: Tuple[int, int] = None, curve: Curve = None, cache=None)->Tuple[int, int, int]: if curve is None: