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