summaryrefslogtreecommitdiff
path: root/esign.cpp
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2015-06-29 09:46:48 -0400
committerJeffrey Walton <noloader@gmail.com>2015-06-29 09:46:48 -0400
commitbb0d9c7caf45537fbb6e00a32c6ea402a3552f30 (patch)
tree4d0c8302fdc8da7c80fce75f5ba6707db04c3314 /esign.cpp
parent457eaeaf2317faa30c86d6d3fc289f40c58cf177 (diff)
downloadcryptopp-git-bb0d9c7caf45537fbb6e00a32c6ea402a3552f30.tar.gz
Cleared warning on operator precedence
Diffstat (limited to 'esign.cpp')
-rw-r--r--esign.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/esign.cpp b/esign.cpp
index 8b42c1fa..f6a526c8 100644
--- a/esign.cpp
+++ b/esign.cpp
@@ -158,7 +158,7 @@ Integer InvertibleESIGNFunction::CalculateRandomizedInverse(RandomNumberGenerato
w1 = pq - w1;
}
}
- while ((w1 >> 2*GetK()+1).IsPositive());
+ while ((w1 >> (2*GetK()+1)).IsPositive());
ModularArithmetic modp(m_p);
Integer t = modp.Divide(w0 * r % m_p, m_e * re % m_p);