| 436 | } |
| 437 | |
| 438 | txBigInt *mont_in(txMachine *the, txBigInt *r, txBigInt *a, txBigInt *m) |
| 439 | { |
| 440 | txBigInt *ta; |
| 441 | |
| 442 | if (r == NULL) |
| 443 | r = fxBigInt_alloc(the, m->size); |
| 444 | ta = fxBigInt_ulsl1(the, NULL, a, m->size * mxBigIntWordSize); |
| 445 | fxBigInt_mod(the, r, ta, m); |
| 446 | fxBigInt_free(the, ta); |
| 447 | return r; |
| 448 | } |
| 449 | |
| 450 | txBigInt *mont_out(txMachine *the, txBigInt *r, txBigInt *a, txBigInt *m, txU4 u) |
| 451 | { |
no test coverage detected