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