|
|
|
@ -270,7 +270,6 @@ int secp256k1_ecdsa_sign(const secp256k1_context* ctx, secp256k1_ecdsa_signature
|
|
|
|
|
secp256k1_scalar sec, non, msg;
|
|
|
|
|
int ret = 0;
|
|
|
|
|
int overflow = 0;
|
|
|
|
|
unsigned int count = 0;
|
|
|
|
|
VERIFY_CHECK(ctx != NULL);
|
|
|
|
|
ARG_CHECK(secp256k1_ecmult_gen_context_is_built(&ctx->ecmult_gen_ctx));
|
|
|
|
|
ARG_CHECK(msg32 != NULL);
|
|
|
|
@ -283,6 +282,7 @@ int secp256k1_ecdsa_sign(const secp256k1_context* ctx, secp256k1_ecdsa_signature
|
|
|
|
|
secp256k1_scalar_set_b32(&sec, seckey, &overflow);
|
|
|
|
|
/* Fail if the secret key is invalid. */
|
|
|
|
|
if (!overflow && !secp256k1_scalar_is_zero(&sec)) {
|
|
|
|
|
unsigned int count = 0;
|
|
|
|
|
secp256k1_scalar_set_b32(&msg, msg32, NULL);
|
|
|
|
|
while (1) {
|
|
|
|
|
unsigned char nonce32[32];
|
|
|
|
@ -292,7 +292,7 @@ int secp256k1_ecdsa_sign(const secp256k1_context* ctx, secp256k1_ecdsa_signature
|
|
|
|
|
}
|
|
|
|
|
secp256k1_scalar_set_b32(&non, nonce32, &overflow);
|
|
|
|
|
memset(nonce32, 0, 32);
|
|
|
|
|
if (!secp256k1_scalar_is_zero(&non) && !overflow) {
|
|
|
|
|
if (!overflow && !secp256k1_scalar_is_zero(&non)) {
|
|
|
|
|
if (secp256k1_ecdsa_sig_sign(&ctx->ecmult_gen_ctx, &r, &s, &sec, &msg, &non, NULL)) {
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
@ -320,7 +320,7 @@ int secp256k1_ec_seckey_verify(const secp256k1_context* ctx, const unsigned char
|
|
|
|
|
(void)ctx;
|
|
|
|
|
|
|
|
|
|
secp256k1_scalar_set_b32(&sec, seckey, &overflow);
|
|
|
|
|
ret = !secp256k1_scalar_is_zero(&sec) && !overflow;
|
|
|
|
|
ret = !overflow && !secp256k1_scalar_is_zero(&sec);
|
|
|
|
|
secp256k1_scalar_clear(&sec);
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
@ -337,7 +337,7 @@ int secp256k1_ec_pubkey_create(const secp256k1_context* ctx, secp256k1_pubkey *p
|
|
|
|
|
ARG_CHECK(seckey != NULL);
|
|
|
|
|
|
|
|
|
|
secp256k1_scalar_set_b32(&sec, seckey, &overflow);
|
|
|
|
|
ret = !overflow & !secp256k1_scalar_is_zero(&sec);
|
|
|
|
|
ret = (!overflow) & (!secp256k1_scalar_is_zero(&sec));
|
|
|
|
|
secp256k1_ecmult_gen(&ctx->ecmult_gen_ctx, &pj, &sec);
|
|
|
|
|
secp256k1_ge_set_gej(&p, &pj);
|
|
|
|
|
secp256k1_pubkey_save(pubkey, &p);
|
|
|
|
@ -361,7 +361,7 @@ int secp256k1_ec_privkey_tweak_add(const secp256k1_context* ctx, unsigned char *
|
|
|
|
|
secp256k1_scalar_set_b32(&term, tweak, &overflow);
|
|
|
|
|
secp256k1_scalar_set_b32(&sec, seckey, NULL);
|
|
|
|
|
|
|
|
|
|
ret = secp256k1_eckey_privkey_tweak_add(&sec, &term) && !overflow;
|
|
|
|
|
ret = !overflow && secp256k1_eckey_privkey_tweak_add(&sec, &term);
|
|
|
|
|
if (ret) {
|
|
|
|
|
secp256k1_scalar_get_b32(seckey, &sec);
|
|
|
|
|
}
|
|
|
|
@ -406,7 +406,7 @@ int secp256k1_ec_privkey_tweak_mul(const secp256k1_context* ctx, unsigned char *
|
|
|
|
|
|
|
|
|
|
secp256k1_scalar_set_b32(&factor, tweak, &overflow);
|
|
|
|
|
secp256k1_scalar_set_b32(&sec, seckey, NULL);
|
|
|
|
|
ret = secp256k1_eckey_privkey_tweak_mul(&sec, &factor) && !overflow;
|
|
|
|
|
ret = !overflow && secp256k1_eckey_privkey_tweak_mul(&sec, &factor);
|
|
|
|
|
if (ret) {
|
|
|
|
|
secp256k1_scalar_get_b32(seckey, &sec);
|
|
|
|
|
}
|
|
|
|
|