/* * DESX * (C) 1999-2007 Jack Lloyd * * Distributed under the terms of the Botan license */ #ifndef BOTAN_DESX_H__ #define BOTAN_DESX_H__ #include namespace Botan { /** * DESX */ class BOTAN_DLL DESX : public Block_Cipher_Fixed_Params<8, 24> { 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() { des.clear(); zeroise(K1); zeroise(K2); } std::string name() const { return "DESX"; } BlockCipher* clone() const { return new DESX; } DESX() : K1(8), K2(8) {} private: void key_schedule(const byte[], size_t); SecureVector K1, K2; DES des; }; } #endif