diff options
author | lloyd <[email protected]> | 2010-09-30 12:57:19 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2010-09-30 12:57:19 +0000 |
commit | 9e0aa0dca7a4fbfcd9204ba24e678108202569d2 (patch) | |
tree | 78af4294eb27fdcebbcd5cceccdf22ea86547391 /src/math/numbertheory | |
parent | acdceb716e83dd686122fb2a598ef56f4733caa0 (diff) |
Tidy
Diffstat (limited to 'src/math/numbertheory')
-rw-r--r-- | src/math/numbertheory/point_gfp.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/math/numbertheory/point_gfp.cpp b/src/math/numbertheory/point_gfp.cpp index 1f6c1ddf6..56d4a145a 100644 --- a/src/math/numbertheory/point_gfp.cpp +++ b/src/math/numbertheory/point_gfp.cpp @@ -324,7 +324,8 @@ PointGFp operator*(const BigInt& scalar, const PointGFp& point) while(bits_left >= window_size) { - u32bit nibble = scalar.get_substring(bits_left - window_size, window_size); + u32bit nibble = scalar.get_substring(bits_left - window_size, + window_size); for(u32bit i = 0; i != window_size; ++i) H.mult2(ws); |