summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/arm/nds/tools/ndstool/include/bigint.h
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/lib/libbsp/arm/nds/tools/ndstool/include/bigint.h')
-rw-r--r--c/src/lib/libbsp/arm/nds/tools/ndstool/include/bigint.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/c/src/lib/libbsp/arm/nds/tools/ndstool/include/bigint.h b/c/src/lib/libbsp/arm/nds/tools/ndstool/include/bigint.h
deleted file mode 100644
index 27d01a26b8..0000000000
--- a/c/src/lib/libbsp/arm/nds/tools/ndstool/include/bigint.h
+++ /dev/null
@@ -1,11 +0,0 @@
-struct BigInt
-{
- unsigned char data[129*2]; // 128*2 doesn't seem to be enough for 1024 bit keys
-
- int Sub(BigInt &a, BigInt &b, int b_shift);
- void MulMod(BigInt &a, BigInt &b, BigInt &m);
- void PowMod(BigInt &n, BigInt &m);
- void print();
- void Set(unsigned char *data, unsigned int length);
- void Get(unsigned char *data, unsigned int length);
-};