/************************************************* * Parser Functions Header File * * (C) 1999-2006 The Botan Project * *************************************************/ #ifndef BOTAN_PARSER_H__ #define BOTAN_PARSER_H__ #include #include #include namespace Botan { /************************************************* * String Parsing Functions * *************************************************/ std::vector parse_algorithm_name(const std::string&); std::vector split_on(const std::string&, char); std::vector parse_asn1_oid(const std::string&); bool x500_name_cmp(const std::string&, const std::string&); u32bit parse_expr(const std::string&); /************************************************* * String/Integer Conversions * *************************************************/ std::string to_string(u64bit, u32bit = 0); u32bit to_u32bit(const std::string&); } #endif