Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions nbtheory.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -543,6 +543,9 @@ Integer CRT(const Integer &xp, const Integer &p, const Integer &xq, const Intege

Integer ModularSquareRoot(const Integer &a, const Integer &p)
{
if (!IsPrime(p))
throw InvalidArgument("ModularSquareRoot: p must be a prime");

if (p%4 == 3)
return a_exp_b_mod_c(a, (p+1)/4, p);

Expand Down