aboutsummaryrefslogtreecommitdiffstats
path: root/src/block/safer/safer_sk.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/block/safer/safer_sk.h')
-rw-r--r--src/block/safer/safer_sk.h42
1 files changed, 0 insertions, 42 deletions
diff --git a/src/block/safer/safer_sk.h b/src/block/safer/safer_sk.h
deleted file mode 100644
index 043ecb456..000000000
--- a/src/block/safer/safer_sk.h
+++ /dev/null
@@ -1,42 +0,0 @@
-/*
-* SAFER-SK
-* (C) 1999-2007 Jack Lloyd
-*
-* Distributed under the terms of the Botan license
-*/
-
-#ifndef BOTAN_SAFER_SK_H__
-#define BOTAN_SAFER_SK_H__
-
-#include <botan/block_cipher.h>
-
-namespace Botan {
-
-/**
-* SAFER-SK
-*/
-class BOTAN_DLL SAFER_SK : public Block_Cipher_Fixed_Params<8, 16>
- {
- 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;
- BlockCipher* clone() const;
-
- /**
- * @param rounds the number of rounds to use - must be between 1
- * and 13
- */
- SAFER_SK(size_t rounds);
- private:
- void key_schedule(const byte[], size_t);
-
- size_t rounds;
- secure_vector<byte> EK;
- };
-
-}
-
-#endif