aboutsummaryrefslogtreecommitdiffstats
path: root/src/block/threefish_avx2/threefish_avx2.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/block/threefish_avx2/threefish_avx2.h')
-rw-r--r--src/block/threefish_avx2/threefish_avx2.h28
1 files changed, 0 insertions, 28 deletions
diff --git a/src/block/threefish_avx2/threefish_avx2.h b/src/block/threefish_avx2/threefish_avx2.h
deleted file mode 100644
index ed0da00d6..000000000
--- a/src/block/threefish_avx2/threefish_avx2.h
+++ /dev/null
@@ -1,28 +0,0 @@
-/*
-* Threefish-512 in AVX2
-* (C) 2013 Jack Lloyd
-*
-* Distributed under the terms of the Botan license
-*/
-
-#ifndef BOTAN_THREEFISH_AVX2_H__
-#define BOTAN_THREEFISH_AVX2_H__
-
-#include <botan/threefish.h>
-
-namespace Botan {
-
-/**
-* Threefish-512
-*/
-class BOTAN_DLL Threefish_512_AVX2 : public Threefish_512
- {
- private:
- void encrypt_n(const byte in[], byte out[], size_t blocks) const override;
- void decrypt_n(const byte in[], byte out[], size_t blocks) const override;
- BlockCipher* clone() const override { return new Threefish_512_AVX2; }
- };
-
-}
-
-#endif