Use ASCII character for comment

pull/368/head
Jeffrey Walton 2017-01-22 20:53:50 -05:00
parent 14f5305c92
commit 12978bc6ea
No known key found for this signature in database
GPG Key ID: B36AB348921B1838
1 changed files with 1 additions and 1 deletions

View File

@ -415,7 +415,7 @@ public:
const Integer &q = params.GetSubgroupOrder();
// r = x(k * G) mod q
r = params.ConvertElementToInteger(params.ExponentiateBase(k)) % q;
// s = (k * r h(m)) * d_A mod q
// s = (k * r - h(m)) * d_A mod q
s = (k * r - e) * x % q;
CRYPTOPP_ASSERT(!!r && !!s);
}