blob: 9d05ea15d8df48109a797e09a36174debd23ee04 (
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
/*
* Character Set Handling
* (C) 1999-2007 Jack Lloyd
*
* Botan is released under the Simplified BSD License (see license.txt)
*/
#ifndef BOTAN_CHARSET_H_
#define BOTAN_CHARSET_H_
#include <botan/types.h>
#include <string>
namespace Botan {
/**
* Convert a sequence of UCS-2 (big endian) characters to a UTF-8 string
* This is used for ASN.1 BMPString type
* @param ucs2 the sequence of UCS-2 characters
* @param len length of ucs2 in bytes, must be a multiple of 2
*/
BOTAN_TEST_API std::string ucs2_to_utf8(const uint8_t ucs2[], size_t len);
/**
* Convert a sequence of UCS-4 (big endian) characters to a UTF-8 string
* This is used for ASN.1 UniversalString type
* @param ucs4 the sequence of UCS-4 characters
* @param len length of ucs4 in bytes, must be a multiple of 4
*/
BOTAN_TEST_API std::string ucs4_to_utf8(const uint8_t ucs4[], size_t len);
/**
* Convert a UTF-8 string to Latin-1
* If a character outside the Latin-1 range is encountered, an exception is thrown.
*/
BOTAN_TEST_API std::string utf8_to_latin1(const std::string& utf8);
BOTAN_TEST_API std::string ucs2_to_latin1(const std::string& ucs2);
BOTAN_TEST_API std::string latin1_to_utf8(const std::string& iso8859);
namespace Charset {
/*
* Simple character classifier functions
*/
bool is_digit(char c);
bool is_space(char c);
bool caseless_cmp(char x, char y);
uint8_t char2digit(char c);
char digit2char(uint8_t b);
}
}
#endif
|