/************************************************* * Parallel Header File * * (C) 1999-2007 The Botan Project * *************************************************/ #ifndef BOTAN_PAR_HASH_H__ #define BOTAN_PAR_HASH_H__ #include #include namespace Botan { /************************************************* * Parallel * *************************************************/ class Parallel : public HashFunction { public: void clear() throw(); std::string name() const; HashFunction* clone() const; Parallel(const std::vector&); ~Parallel(); private: void add_data(const byte[], u32bit); void final_result(byte[]); std::vector hashes; }; } #endif