diff options
author | Jack Lloyd <[email protected]> | 2018-03-02 19:47:05 -0500 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2018-03-02 19:47:05 -0500 |
commit | 36451c67afd87876ab0b180c4f3f93a8dec5f9c8 (patch) | |
tree | 3febfe9779fcbabd07be3769b302fab5d3bdf5d0 /src/lib/math | |
parent | 27ab8fdbaaba4d128052025e0bbab4fa774fd1ac (diff) |
Fix header includes
Diffstat (limited to 'src/lib/math')
-rw-r--r-- | src/lib/math/mp/mp_karat.cpp | 2 | ||||
-rw-r--r-- | src/lib/math/mp/mp_monty.cpp | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/src/lib/math/mp/mp_karat.cpp b/src/lib/math/mp/mp_karat.cpp index b10ea6fd9..6cf41503d 100644 --- a/src/lib/math/mp/mp_karat.cpp +++ b/src/lib/math/mp/mp_karat.cpp @@ -8,8 +8,8 @@ #include <botan/internal/mp_core.h> #include <botan/internal/mp_asmi.h> -#include <botan/bigint.h> #include <botan/mem_ops.h> +#include <botan/exceptn.h> namespace Botan { diff --git a/src/lib/math/mp/mp_monty.cpp b/src/lib/math/mp/mp_monty.cpp index ba94d1528..ea32313d0 100644 --- a/src/lib/math/mp/mp_monty.cpp +++ b/src/lib/math/mp/mp_monty.cpp @@ -7,11 +7,12 @@ * Botan is released under the Simplified BSD License (see license.txt) */ -#include <botan/bigint.h> +#include <botan/internal/mp_core.h> #include <botan/internal/mp_madd.h> #include <botan/internal/mp_asmi.h> #include <botan/internal/ct_utils.h> #include <botan/mem_ops.h> +#include <botan/exceptn.h> namespace Botan { |