VeraCrypt
aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMounir IDRASSI <mounir.idrassi@idrix.fr>2014-10-26 17:24:21 +0100
committerMounir IDRASSI <mounir.idrassi@idrix.fr>2014-11-08 23:24:46 +0100
commit65e4b3a91b2b009a9014a0d41ed664a880431a23 (patch)
tree000dae06053bd052c56fa5a407094968bacc1541
parent2cdfbd2703e52e940771c128d79caa699b2c6650 (diff)
downloadVeraCrypt-65e4b3a91b2b009a9014a0d41ed664a880431a23.tar.gz
VeraCrypt-65e4b3a91b2b009a9014a0d41ed664a880431a23.zip
Remove unused functions from GfMul.c
-rw-r--r--src/Common/GfMul.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/Common/GfMul.c b/src/Common/GfMul.c
index 7cc36ec1..e933e56b 100644
--- a/src/Common/GfMul.c
+++ b/src/Common/GfMul.c
@@ -726,22 +726,6 @@ static void GfMul128Basic (unsigned __int8 *a, unsigned __int8 *b, unsigned __in
}
}
-static void xor64 (uint64 *a, uint64 *b)
-{
- *a ^= *b;
-}
-
-static void shl64 (unsigned __int8 *a)
-{
- int i, x = 0, xx;
- for (i = 7; i >= 0; i--)
- {
- xx = (a[i] & 0x80) >> 7;
- a[i] = (char) ((a[i] << 1) | x);
- x = xx;
- }
-}
-
BOOL GfMulSelfTest ()
{