aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/bigint/divide.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/bigint/divide.h b/src/bigint/divide.h
new file mode 100644
index 000000000..d0de3da75
--- /dev/null
+++ b/src/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