diff options
author | lloyd <[email protected]> | 2010-03-13 09:16:33 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2010-03-13 09:16:33 +0000 |
commit | 25f27853f11c7c676aab69a41640669193b346e9 (patch) | |
tree | 2a46fa3fcea823934149409129be496f395d35ac /src/math/numbertheory/point_gfp.h | |
parent | 135f1eab8a81ffce41d57441dbe09e78eb75948d (diff) |
Share workspace among calls to mult2
Diffstat (limited to 'src/math/numbertheory/point_gfp.h')
-rw-r--r-- | src/math/numbertheory/point_gfp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/math/numbertheory/point_gfp.h b/src/math/numbertheory/point_gfp.h index 6172d4322..0dbd5d319 100644 --- a/src/math/numbertheory/point_gfp.h +++ b/src/math/numbertheory/point_gfp.h @@ -149,7 +149,7 @@ class BOTAN_DLL PointGFp /** * Point doubling */ - void mult2(); + void mult2(MemoryRegion<word>& workspace); CurveGFp curve; BigInt coord_x, coord_y, coord_z; |