diff options
Diffstat (limited to 'src/lib/math/bigint/bigint.h')
-rw-r--r-- | src/lib/math/bigint/bigint.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/lib/math/bigint/bigint.h b/src/lib/math/bigint/bigint.h index 505bacde0..ac0a57038 100644 --- a/src/lib/math/bigint/bigint.h +++ b/src/lib/math/bigint/bigint.h @@ -12,7 +12,6 @@ #include <botan/types.h> #include <botan/secmem.h> #include <botan/exceptn.h> -#include <botan/loadstor.h> #include <iosfwd> namespace Botan { @@ -497,11 +496,7 @@ class BOTAN_PUBLIC_API(2,0) BigInt final * @param n the offset to get a byte from * @result byte at offset n */ - uint8_t byte_at(size_t n) const - { - return get_byte(sizeof(word) - (n % sizeof(word)) - 1, - word_at(n / sizeof(word))); - } + uint8_t byte_at(size_t n) const; /** * Return the word at a specified position of the internal register |