| 547 | // ------------------------------------------------ |
| 548 | |
| 549 | void Int::ModCube(Int *a) { |
| 550 | |
| 551 | Int p; |
| 552 | Int p2; |
| 553 | p.MontgomeryMult(a, a); |
| 554 | p2.MontgomeryMult(&p, a); |
| 555 | MontgomeryMult(&_R3, &p2); |
| 556 | |
| 557 | } |
| 558 | |
| 559 | // ------------------------------------------------ |
| 560 |
nothing calls this directly
no test coverage detected