blob: dcfde95680deaaedc9fad3da44567a480fb50f0a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
/*************************************************
* Parser Functions Header File *
* (C) 1999-2007 The Botan Project *
*************************************************/
#ifndef BOTAN_PARSER_H__
#define BOTAN_PARSER_H__
#include <botan/types.h>
#include <string>
#include <vector>
namespace Botan {
/*************************************************
* String Parsing Functions *
*************************************************/
std::vector<std::string> parse_algorithm_name(const std::string&);
std::vector<std::string> split_on(const std::string&, char);
std::vector<u32bit> 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&);
/*************************************************
* String/Network Address Conversions *
*************************************************/
u32bit string_to_ipv4(const std::string&);
std::string ipv4_to_string(u32bit);
}
#endif
|