diff options
author | lloyd <[email protected]> | 2010-01-12 16:15:29 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2010-01-12 16:15:29 +0000 |
commit | 118e42c730001fb3ef2f30a295b099c73bc99668 (patch) | |
tree | b4689813d0054dbc09703df60cd1e23e0649337f /src/block/noekeon_simd/noekeon_simd.h | |
parent | 3f9791ba4d118143c03a613280f53a29a6e1e993 (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_simd/noekeon_simd.h')
-rw-r--r-- | src/block/noekeon_simd/noekeon_simd.h | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/src/block/noekeon_simd/noekeon_simd.h b/src/block/noekeon_simd/noekeon_simd.h new file mode 100644 index 000000000..466c4b741 --- /dev/null +++ b/src/block/noekeon_simd/noekeon_simd.h @@ -0,0 +1,29 @@ +/* +* Noekeon in SIMD +* (C) 2010 Jack Lloyd +* +* Distributed under the terms of the Botan license +*/ + +#ifndef BOTAN_NOEKEON_SIMD_H__ +#define BOTAN_NOEKEON_SIMD_H__ + +#include <botan/noekeon.h> + +namespace Botan { + +/* +* Noekeon +*/ +class BOTAN_DLL Noekeon_SIMD : public Noekeon + { + public: + void encrypt_n(const byte in[], byte out[], u32bit blocks) const; + void decrypt_n(const byte in[], byte out[], u32bit blocks) const; + + BlockCipher* clone() const { return new Noekeon_SIMD; } + }; + +} + +#endif |