/************************************************* * Hash Function Identification Header File * * (C) 1999-2007 Jack Lloyd * *************************************************/ #ifndef BOTAN_HASHID_H__ #define BOTAN_HASHID_H__ #include #include namespace Botan { /************************************************* * Return the values of various defined HashIDs * *************************************************/ MemoryVector pkcs_hash_id(const std::string&); byte ieee1363_hash_id(const std::string&); } #endif