aboutsummaryrefslogtreecommitdiffstats
path: root/src/block/cast/cast256.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/block/cast/cast256.h')
-rw-r--r--src/block/cast/cast256.h36
1 files changed, 0 insertions, 36 deletions
diff --git a/src/block/cast/cast256.h b/src/block/cast/cast256.h
deleted file mode 100644
index cd4572c4d..000000000
--- a/src/block/cast/cast256.h
+++ /dev/null
@@ -1,36 +0,0 @@
-/*
-* CAST-256
-* (C) 1999-2007 Jack Lloyd
-*
-* Distributed under the terms of the Botan license
-*/
-
-#ifndef BOTAN_CAST256_H__
-#define BOTAN_CAST256_H__
-
-#include <botan/block_cipher.h>
-
-namespace Botan {
-
-/**
-* CAST-256
-*/
-class BOTAN_DLL CAST_256 : public Block_Cipher_Fixed_Params<16, 4, 32, 4>
- {
- public:
- void encrypt_n(const byte in[], byte out[], size_t blocks) const;
- void decrypt_n(const byte in[], byte out[], size_t blocks) const;
-
- void clear();
- std::string name() const { return "CAST-256"; }
- BlockCipher* clone() const { return new CAST_256; }
- private:
- void key_schedule(const byte[], size_t);
-
- secure_vector<u32bit> MK;
- secure_vector<byte> RK;
- };
-
-}
-
-#endif