byte * BufferedTransformation::ChannelCreatePutSpace(const std::string &channel, unsigned int &size) { if (channel.empty()) return CreatePutSpace(size); else throw NoChannelSupport(); }
byte * BufferedTransformation::ChannelCreatePutSpace(const std::string &channel, size_t &size) { if (channel.empty()) return CreatePutSpace(size); else throw NoChannelSupport(AlgorithmName()); }