Use 'low S' as malleability breaker rather than 'even S'
This commit is contained in:
parent
9196f38c8f
commit
e0e14e43d9
1 changed files with 11 additions and 9 deletions
20
src/key.cpp
20
src/key.cpp
|
@ -199,17 +199,19 @@ public:
|
||||||
ECDSA_SIG *sig = ECDSA_do_sign((unsigned char*)&hash, sizeof(hash), pkey);
|
ECDSA_SIG *sig = ECDSA_do_sign((unsigned char*)&hash, sizeof(hash), pkey);
|
||||||
if (sig == NULL)
|
if (sig == NULL)
|
||||||
return false;
|
return false;
|
||||||
if (BN_is_odd(sig->s)) {
|
BN_CTX *ctx = BN_CTX_new();
|
||||||
// enforce even S values, by negating the value (modulo the order) if odd
|
BN_CTX_start(ctx);
|
||||||
BN_CTX *ctx = BN_CTX_new();
|
const EC_GROUP *group = EC_KEY_get0_group(pkey);
|
||||||
BN_CTX_start(ctx);
|
BIGNUM *order = BN_CTX_get(ctx);
|
||||||
const EC_GROUP *group = EC_KEY_get0_group(pkey);
|
BIGNUM *halforder = BN_CTX_get(ctx);
|
||||||
BIGNUM *order = BN_CTX_get(ctx);
|
EC_GROUP_get_order(group, order, ctx);
|
||||||
EC_GROUP_get_order(group, order, ctx);
|
BN_rshift1(halforder, order);
|
||||||
|
if (BN_cmp(sig->s, halforder) > 0) {
|
||||||
|
// enforce low S values, by negating the value (modulo the order) if above order/2.
|
||||||
BN_sub(sig->s, order, sig->s);
|
BN_sub(sig->s, order, sig->s);
|
||||||
BN_CTX_end(ctx);
|
|
||||||
BN_CTX_free(ctx);
|
|
||||||
}
|
}
|
||||||
|
BN_CTX_end(ctx);
|
||||||
|
BN_CTX_free(ctx);
|
||||||
unsigned int nSize = ECDSA_size(pkey);
|
unsigned int nSize = ECDSA_size(pkey);
|
||||||
vchSig.resize(nSize); // Make sure it is big enough
|
vchSig.resize(nSize); // Make sure it is big enough
|
||||||
unsigned char *pos = &vchSig[0];
|
unsigned char *pos = &vchSig[0];
|
||||||
|
|
Loading…
Reference in a new issue