aboutsummaryrefslogtreecommitdiffstats
path: root/src/block/noekeon
diff options
context:
space:
mode:
authorlloyd <[email protected]>2010-01-12 16:15:29 +0000
committerlloyd <[email protected]>2010-01-12 16:15:29 +0000
commit118e42c730001fb3ef2f30a295b099c73bc99668 (patch)
treeb4689813d0054dbc09703df60cd1e23e0649337f /src/block/noekeon
parent3f9791ba4d118143c03a613280f53a29a6e1e993 (diff)
Add SIMD version of Noekeon. On a Core2, about 2.7x faster using SIMD_SSE2
and 1.6x faster using SIMD_Scalar.
Diffstat (limited to 'src/block/noekeon')
-rw-r--r--src/block/noekeon/noekeon.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/block/noekeon/noekeon.h b/src/block/noekeon/noekeon.h
index 4532c1be2..22ef65342 100644
--- a/src/block/noekeon/noekeon.h
+++ b/src/block/noekeon/noekeon.h
@@ -26,7 +26,7 @@ class BOTAN_DLL Noekeon : public BlockCipher
BlockCipher* clone() const { return new Noekeon; }
Noekeon() : BlockCipher(16, 16) {}
- private:
+ protected:
void key_schedule(const byte[], u32bit);
static const byte RC[17];