From 03e8c5ad314252cde58c53688c70b9f836a1d5b4 Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Wed, 28 Nov 2012 17:39:09 +0000 Subject: More comments; moved the encryption system to unstable. --- src/experimental/ciphermodeecb.h | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 src/experimental/ciphermodeecb.h (limited to 'src/experimental/ciphermodeecb.h') diff --git a/src/experimental/ciphermodeecb.h b/src/experimental/ciphermodeecb.h deleted file mode 100644 index cac2beb..0000000 --- a/src/experimental/ciphermodeecb.h +++ /dev/null @@ -1,32 +0,0 @@ -#ifndef BU_MODE_ECB_H -#define BU_MODE_ECB_H - -namespace Bu -{ - template - class CipherModeEcb : public CipherType - { - public: - CipherModeEcb( class Stream &rNext ) : - CipherType( rNext ) - { - } - - virtual ~CipherModeEcb() - { - } - - protected: - virtual void decipher( void *pBuf ) - { - CipherType::decipher( pBuf ); - } - - virtual void encipher( void *pBuf ) - { - CipherType::encipher( pBuf ); - } - }; -}; - -#endif -- cgit v1.2.3