| 43 | extern txBigInt *fxBigInt_mont_exp_SW(xsMachine *the, txBigInt *r, txBigInt *b, txBigInt *e, txBigInt *m, int param); |
| 44 | |
| 45 | void |
| 46 | xs_mont2_exp_LR(xsMachine *the) |
| 47 | { |
| 48 | txBigInt *a, *e, *m, *r; |
| 49 | |
| 50 | a = xsmcToBigInt(xsArg(0)); |
| 51 | e = xsmcToBigInt(xsArg(1)); |
| 52 | m = xsmcToBigInt(xsArg(2)); |
| 53 | r = fxBigInt_mont_exp_LR(the, NULL, a, e, m); |
| 54 | xsmcSetBigInt(xsResult, r); |
| 55 | } |
| 56 | |
| 57 | void |
| 58 | xs_mont2_exp_SW(xsMachine *the) |
nothing calls this directly
no test coverage detected