#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