summaryrefslogtreecommitdiffstats
path: root/src/crypt/cbigint.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/crypt/cbigint.cpp')
-rw-r--r--src/crypt/cbigint.cpp51
1 files changed, 51 insertions, 0 deletions
diff --git a/src/crypt/cbigint.cpp b/src/crypt/cbigint.cpp
new file mode 100644
index 0000000..a1aebc1
--- /dev/null
+++ b/src/crypt/cbigint.cpp
@@ -0,0 +1,51 @@
+#include "cbigint.h"
+
+CBigInt::CBigInt(int value = 0)
+{
+
+}
+
+CBigInt::CBigInt(const CBigInt & toCopy)
+{
+
+}
+
+CBigInt::~CBigInt()
+{
+
+}
+
+int CBigInt::setSize(int newSize)
+{
+
+}
+
+int CBigInt::size() const
+{
+
+}
+
+void CBigInt::setDigit(int pos, BaseType value)
+{
+
+}
+
+CBigInt CBigInt::operator +(const CBigInt & n2)
+{
+
+}
+
+const char * CBigInt::toHexString()const
+{
+
+}
+
+static bool CBigInt::isLongOk()
+{
+
+}
+
+void CBigInt::copy(const CBigInt & toCopy)
+{
+
+}