| 682 | // ------------------------------------------------ |
| 683 | |
| 684 | void Int::MultModN(Int *a,Int *b,Int *n) { |
| 685 | |
| 686 | Int r; |
| 687 | Mult(a,b); |
| 688 | Div(n,&r); |
| 689 | Set(&r); |
| 690 | |
| 691 | } |
| 692 | |
| 693 | // ------------------------------------------------ |
| 694 |
nothing calls this directly
no outgoing calls
no test coverage detected