1/*
2Copyright (C) 1999-2007 The Botan Project. All rights reserved.
3
4Redistribution and use in source and binary forms, for any use, with or without
5modification, is permitted provided that the following conditions are met:
6
71. Redistributions of source code must retain the above copyright notice, this
8list of conditions, and the following disclaimer.
9
102. Redistributions in binary form must reproduce the above copyright notice,
11this list of conditions, and the following disclaimer in the documentation
12and/or other materials provided with the distribution.
13
14THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) "AS IS" AND ANY EXPRESS OR IMPLIED
15WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
16MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, ARE DISCLAIMED.
17
18IN NO EVENT SHALL THE AUTHOR(S) OR CONTRIBUTOR(S) BE LIABLE FOR ANY DIRECT,
19INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
20BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
22LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
23OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
24ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25*/
26// LICENSEHEADER_END
27namespace QCA { // WRAPNS_LINE
28/*************************************************
29 * Character Set Handling Header File *
30 * (C) 1999-2007 The Botan Project *
31 *************************************************/
32
33#ifndef BOTAN_CHARSET_H__
34#define BOTAN_CHARSET_H__
35
36} // WRAPNS_LINE
37#include <botan/types.h>
38namespace QCA { // WRAPNS_LINE
39#ifndef BOTAN_TOOLS_ONLY
40} // WRAPNS_LINE
41#include <botan/enums.h>
42namespace QCA { // WRAPNS_LINE
43#endif
44} // WRAPNS_LINE
45#include <string>
46namespace QCA { // WRAPNS_LINE
47
48namespace Botan {
49
50/*************************************************
51 * Character Set Transcoder Interface *
52 *************************************************/
53#ifndef BOTAN_TOOLS_ONLY
54class Charset_Transcoder
55{
56public:
57 virtual std::string transcode(const std::string &, Character_Set, Character_Set) const = 0;
58
59 virtual ~Charset_Transcoder()
60 {
61 }
62};
63#endif
64
65namespace Charset {
66
67/*************************************************
68 * Character Set Handling *
69 *************************************************/
70#ifndef BOTAN_TOOLS_ONLY
71std::string transcode(const std::string &, Character_Set, Character_Set);
72#endif
73
74bool is_digit(char);
75bool is_space(char);
76bool caseless_cmp(char, char);
77
78byte char2digit(char);
79char digit2char(byte);
80
81}
82
83}
84
85#endif
86} // WRAPNS_LINE
87

source code of qca/src/botantools/botan/botan/charset.h