From 1e9d8f7a92e43f61e4d9f478f6e8dd5ae206616e Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Mon, 9 Apr 2012 16:35:15 +0000 Subject: Halfway through crypto-template conversion. --- src/experimental/cipher.cpp | 62 --------------------------------------------- 1 file changed, 62 deletions(-) (limited to 'src/experimental/cipher.cpp') diff --git a/src/experimental/cipher.cpp b/src/experimental/cipher.cpp index 3430c08..d6d01c7 100644 --- a/src/experimental/cipher.cpp +++ b/src/experimental/cipher.cpp @@ -1,65 +1,3 @@ #include "bu/cipher.h" -Bu::Cipher::Cipher( Bu::Stream &rNext ) : - Bu::Filter( rNext ) -{ -} - -Bu::Cipher::~Cipher() -{ -} - -void Bu::Cipher::start() -{ -} - -Bu::size Bu::Cipher::stop() -{ - return 0; -} - -Bu::size Bu::Cipher::read( void *pBuf, Bu::size iBytes ) -{ - uint32_t i; - - if (iBytes%8) - { - return 0; - } - - iBytes /= 8; - - for (i=0;i