| 480 | } |
| 481 | |
| 482 | Integer ModularRoot(const Integer &a, const Integer &dp, const Integer &dq, |
| 483 | const Integer &p, const Integer &q, const Integer &u) |
| 484 | { |
| 485 | Integer p2 = ModularExponentiation((a % p), dp, p); |
| 486 | Integer q2 = ModularExponentiation((a % q), dq, q); |
| 487 | return CRT(p2, p, q2, q, u); |
| 488 | } |
| 489 | |
| 490 | Integer ModularRoot(const Integer &a, const Integer &e, |
| 491 | const Integer &p, const Integer &q) |
nothing calls this directly
no test coverage detected