aboutsummaryrefslogtreecommitdiffstats
path: root/include/idea.h
diff options
context:
space:
mode:
authorlloyd <[email protected]>2007-11-11 19:48:29 +0000
committerlloyd <[email protected]>2007-11-11 19:48:29 +0000
commit7f3a3d666d9f11f4243c6443e75e0930dd3e9d9b (patch)
tree4b636f95a8459c11f18c0772f7456b88be1b6ae2 /include/idea.h
parentbfab991c9ab5450d78b5c2424d9c7b213995c642 (diff)
Make IDEA::mul_inv just a function in an anonymous namespace, since it really
had no reason/need to be a class method.
Diffstat (limited to 'include/idea.h')
-rw-r--r--include/idea.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/include/idea.h b/include/idea.h
index 6f6932c38..10b0f7049 100644
--- a/include/idea.h
+++ b/include/idea.h
@@ -24,7 +24,6 @@ class IDEA : public BlockCipher
void enc(const byte[], byte[]) const;
void dec(const byte[], byte[]) const;
void key(const byte[], u32bit);
- static u16bit mul_inv(u16bit);
SecureBuffer<u16bit, 52> EK, DK;
};