diff options
author | lloyd <lloyd@randombit.net> | 2008-09-30 22:41:49 +0000 |
---|---|---|
committer | lloyd <lloyd@randombit.net> | 2008-09-30 22:41:49 +0000 |
commit | 13d08cbe978c4cd0de01aa0120c39470508cbbcb (patch) | |
tree | ff93739131cbca0dbdf23a31cd4b7611faf5aa6e /src/math/bigint/divide.h | |
parent | 8854fe339f2e1f81091ba65c042824e8cc62cbbc (diff) |
Rearrange BigInt directories:
math/bigint - BigInt implementation
math/numbertheory - Math stuff built on top of BigInt
Coming soon: math/gfp (parts of pk/ecdsa)
Update deps in the pk files
Diffstat (limited to 'src/math/bigint/divide.h')
-rw-r--r-- | src/math/bigint/divide.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/math/bigint/divide.h b/src/math/bigint/divide.h new file mode 100644 index 000000000..d0de3da75 --- /dev/null +++ b/src/math/bigint/divide.h @@ -0,0 +1,17 @@ +/************************************************* +* Division Header File * +* (C) 1999-2007 Jack Lloyd * +*************************************************/ + +#ifndef BOTAN_DIVISON_ALGORITHM__ +#define BOTAN_DIVISON_ALGORITHM__ + +#include <botan/bigint.h> + +namespace Botan { + +void BOTAN_DLL divide(const BigInt&, const BigInt&, BigInt&, BigInt&); + +} + +#endif |