aboutsummaryrefslogtreecommitdiffstats
path: root/src/block/serpent_simd/serp_simd.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/block/serpent_simd/serp_simd.h')
-rw-r--r--src/block/serpent_simd/serp_simd.h31
1 files changed, 0 insertions, 31 deletions
diff --git a/src/block/serpent_simd/serp_simd.h b/src/block/serpent_simd/serp_simd.h
deleted file mode 100644
index b3c0b06c8..000000000
--- a/src/block/serpent_simd/serp_simd.h
+++ /dev/null
@@ -1,31 +0,0 @@
-/*
-* Serpent (SIMD)
-* (C) 2009 Jack Lloyd
-*
-* Distributed under the terms of the Botan license
-*/
-
-#ifndef BOTAN_SERPENT_SIMD_H__
-#define BOTAN_SERPENT_SIMD_H__
-
-#include <botan/serpent.h>
-
-namespace Botan {
-
-/**
-* Serpent implementation using SIMD
-*/
-class BOTAN_DLL Serpent_SIMD : public Serpent
- {
- public:
- size_t parallelism() const { return 4; }
-
- void encrypt_n(const byte in[], byte out[], size_t blocks) const;
- void decrypt_n(const byte in[], byte out[], size_t blocks) const;
-
- BlockCipher* clone() const { return new Serpent_SIMD; }
- };
-
-}
-
-#endif