mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-12-19 04:48:12 +00:00
Use bn_add instead of bn_addmod (#80)
The bip32 private key derivation used bn_addmod to handle wrap around. This was never sufficient as bn_addmod uses only bn_fast_mod, so an additional bn_mod is necessary. The bn_fast_mod helped when bn_mod was not side-channel safe. Now that bn_mod uses constant time code, we can get rid of the unnecessary bn_fast_mod step and use bn_add instead of bn_addmod.
This commit is contained in:
parent
19efbeef8d
commit
e855c60529
2
bip32.c
2
bip32.c
@ -178,7 +178,7 @@ int hdnode_private_ckd(HDNode *inout, uint32_t i)
|
|||||||
if (!bn_is_less(&b, &inout->curve->params->order)) { // >= order
|
if (!bn_is_less(&b, &inout->curve->params->order)) { // >= order
|
||||||
failed = true;
|
failed = true;
|
||||||
} else {
|
} else {
|
||||||
bn_addmod(&b, &a, &inout->curve->params->order);
|
bn_add(&b, &a);
|
||||||
bn_mod(&b, &inout->curve->params->order);
|
bn_mod(&b, &inout->curve->params->order);
|
||||||
if (bn_is_zero(&b)) {
|
if (bn_is_zero(&b)) {
|
||||||
failed = true;
|
failed = true;
|
||||||
|
Loading…
Reference in New Issue
Block a user