Created
February 16, 2018 03:05
-
-
Save dominiek/d60affdabef51041396bb73b05f87977 to your computer and use it in GitHub Desktop.
secp256k1_ecdsa_sig_recover.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
static int secp256k1_ecdsa_sig_recover(const secp256k1_ecmult_context *ctx, const secp256k1_scalar *sigr, const secp256k1_scalar* sigs, secp256k1_ge *pubkey, const secp256k1_scalar *message, int recid) { | |
unsigned char brx[32]; | |
secp256k1_fe fx; | |
secp256k1_ge x; | |
secp256k1_gej xj; | |
secp256k1_scalar rn, u1, u2; | |
secp256k1_gej qj; | |
int r; | |
if (secp256k1_scalar_is_zero(sigr) || secp256k1_scalar_is_zero(sigs)) { | |
return 0; | |
} | |
secp256k1_scalar_get_b32(brx, sigr); | |
r = secp256k1_fe_set_b32(&fx, brx); | |
(void)r; | |
VERIFY_CHECK(r); /* brx comes from a scalar, so is less than the order; certainly less than p */ | |
if (recid & 2) { | |
if (secp256k1_fe_cmp_var(&fx, &secp256k1_ecdsa_const_p_minus_order) >= 0) { | |
return 0; | |
} | |
secp256k1_fe_add(&fx, &secp256k1_ecdsa_const_order_as_fe); | |
} | |
if (!secp256k1_ge_set_xo_var(&x, &fx, recid & 1)) { | |
return 0; | |
} | |
secp256k1_gej_set_ge(&xj, &x); | |
secp256k1_scalar_inverse_var(&rn, sigr); | |
secp256k1_scalar_mul(&u1, &rn, message); | |
secp256k1_scalar_negate(&u1, &u1); | |
secp256k1_scalar_mul(&u2, &rn, sigs); | |
secp256k1_ecmult(ctx, &qj, &xj, &u2, &u1); | |
secp256k1_ge_set_gej_var(pubkey, &qj); | |
return !secp256k1_gej_is_infinity(&qj); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment