| 718 | // ------------------------------------------------ |
| 719 | |
| 720 | void Int::MultModN(Int *a,Int *b,Int *n) { |
| 721 | |
| 722 | Int r; |
| 723 | Mult(a,b); |
| 724 | Div(n,&r); |
| 725 | Set(&r); |
| 726 | |
| 727 | } |
| 728 | |
| 729 | // ------------------------------------------------ |
| 730 |
nothing calls this directly
no outgoing calls
no test coverage detected