| 66 | } |
| 67 | |
| 68 | void |
| 69 | xs_mod2_exp(xsMachine *the) |
| 70 | { |
| 71 | txBigInt *a, *e, *m, *r; |
| 72 | |
| 73 | a = xsmcToBigInt(xsArg(0)); |
| 74 | e = xsmcToBigInt(xsArg(1)); |
| 75 | m = xsmcToBigInt(xsArg(2)); |
| 76 | r = fxBigInt_mod_exp_LR(the, NULL, a, e, m); |
| 77 | xsmcSetBigInt(xsResult, r); |
| 78 | } |
nothing calls this directly
no test coverage detected