diff options
Diffstat (limited to '')
-rw-r--r-- | src/experimental/ciphermodeecb.h | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/src/experimental/ciphermodeecb.h b/src/experimental/ciphermodeecb.h new file mode 100644 index 0000000..006741a --- /dev/null +++ b/src/experimental/ciphermodeecb.h | |||
@@ -0,0 +1,32 @@ | |||
1 | #ifndef BU_MODE_ECB_H | ||
2 | #define BU_MODE_ECB_H | ||
3 | |||
4 | namespace Bu | ||
5 | { | ||
6 | template<int iBlockSize, typename CipherType> | ||
7 | class CipherModeEcb : public CipherType | ||
8 | { | ||
9 | public: | ||
10 | CipherModeEcb( class Stream &rNext ) : | ||
11 | CipherType( rNext ) | ||
12 | { | ||
13 | } | ||
14 | |||
15 | virtual ~CipherModeEcb() | ||
16 | { | ||
17 | } | ||
18 | |||
19 | protected: | ||
20 | virtual void decipher( void *pBuf ) | ||
21 | { | ||
22 | CipherType::decipher( pBuf ); | ||
23 | } | ||
24 | |||
25 | virtual void encipher( void *pBuf ) | ||
26 | { | ||
27 | CipherType::encipher( pBuf ); | ||
28 | } | ||
29 | }; | ||
30 | }; | ||
31 | |||
32 | #endif | ||