| 155 | } |
| 156 | |
| 157 | txBigInt *fxBigInt_mod_inv(txMachine *the, txBigInt *r, txBigInt *a, txBigInt *m, pool_t *pool) |
| 158 | { |
| 159 | return fxBigInt_mod_sub(the, r, m, a, m, pool); |
| 160 | } |
| 161 | |
| 162 | txBigInt *fxBigInt_mod_mod(txMachine *the, txBigInt *r, txBigInt *a, txBigInt *m, pool_t *pool) |
| 163 | { |
nothing calls this directly
no test coverage detected