From 65e4b3a91b2b009a9014a0d41ed664a880431a23 Mon Sep 17 00:00:00 2001 From: Mounir IDRASSI Date: Sun, 26 Oct 2014 17:24:21 +0100 Subject: Remove unused functions from GfMul.c --- src/Common/GfMul.c | 16 ---------------- 1 file changed, 16 deletions(-) (limited to 'src/Common') 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 () { -- cgit v1.2.3