diff options
author | Jack Lloyd <[email protected]> | 2017-09-21 15:04:25 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2017-09-21 15:04:25 -0400 |
commit | 5d48c1406a956496fd4a020263ee59fbe7fad90a (patch) | |
tree | 4ea0847f71eda94c0ff3a31cfe4167ca2dba8db6 /src/lib/math/ec_gfp | |
parent | 5cc5e1bd3fac87186f511a48cee9cda86e4607ca (diff) |
Header file cleanups
Some help from include-what-you-use
Diffstat (limited to 'src/lib/math/ec_gfp')
-rw-r--r-- | src/lib/math/ec_gfp/curve_gfp.cpp | 1 | ||||
-rw-r--r-- | src/lib/math/ec_gfp/curve_gfp.h | 2 | ||||
-rw-r--r-- | src/lib/math/ec_gfp/point_gfp.cpp | 3 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/math/ec_gfp/curve_gfp.cpp b/src/lib/math/ec_gfp/curve_gfp.cpp index 96593e601..efeb5210f 100644 --- a/src/lib/math/ec_gfp/curve_gfp.cpp +++ b/src/lib/math/ec_gfp/curve_gfp.cpp @@ -8,6 +8,7 @@ #include <botan/curve_gfp.h> #include <botan/curve_nistp.h> +#include <botan/numthry.h> #include <botan/internal/mp_core.h> #include <botan/internal/mp_asmi.h> diff --git a/src/lib/math/ec_gfp/curve_gfp.h b/src/lib/math/ec_gfp/curve_gfp.h index 330d0ba0d..805359ba9 100644 --- a/src/lib/math/ec_gfp/curve_gfp.h +++ b/src/lib/math/ec_gfp/curve_gfp.h @@ -10,7 +10,7 @@ #ifndef BOTAN_GFP_CURVE_H_ #define BOTAN_GFP_CURVE_H_ -#include <botan/numthry.h> +#include <botan/bigint.h> #include <memory> namespace Botan { diff --git a/src/lib/math/ec_gfp/point_gfp.cpp b/src/lib/math/ec_gfp/point_gfp.cpp index 5283b7352..c549823aa 100644 --- a/src/lib/math/ec_gfp/point_gfp.cpp +++ b/src/lib/math/ec_gfp/point_gfp.cpp @@ -9,8 +9,7 @@ #include <botan/point_gfp.h> #include <botan/numthry.h> -#include <botan/loadstor.h> -#include <botan/internal/rounding.h> +#include <botan/rng.h> namespace Botan { |