| 606 | // ------------------------------------------------ |
| 607 | |
| 608 | void Int::ModCube(Int *a) { |
| 609 | |
| 610 | Int p; |
| 611 | Int p2; |
| 612 | p.MontgomeryMult(a, a); |
| 613 | p2.MontgomeryMult(&p, a); |
| 614 | MontgomeryMult(&_R3, &p2); |
| 615 | |
| 616 | } |
| 617 | |
| 618 | // ------------------------------------------------ |
| 619 |
nothing calls this directly
no test coverage detected