2 * InspIRCd -- Internet Relay Chat Daemon
4 * Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
5 * Copyright (C) 2007 Craig Edwards <craigedwards@brainbox.cc>
7 * This file is part of InspIRCd. InspIRCd is free software: you can
8 * redistribute it and/or modify it under the terms of the GNU General Public
9 * License as published by the Free Software Foundation, version 2.
11 * This program is distributed in the hope that it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
13 * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
23 // This (config) is needed as inspstring doesn't pull in the central header
27 /** Sets ret to the formated string. last is the last parameter before ..., and format is the format in printf-style */
28 #define VAFORMAT(ret, last, format) \
31 va_start(_vaList, last); \
32 ret.assign(InspIRCd::Format(_vaList, format)); \
36 /** Compose a hex string from raw data.
37 * @param raw The raw data to compose hex from (can be NULL if rawsize is 0)
38 * @param rawsize The size of the raw data buffer
39 * @return The hex string
41 CoreExport std::string BinToHex(const void* raw, size_t rawsize);
44 CoreExport std::string BinToBase64(const std::string& data, const char* table = NULL, char pad = 0);
46 CoreExport std::string Base64ToBin(const std::string& data, const char* table = NULL);
48 /** Compose a hex string from the data in a std::string.
49 * @param data The data to compose hex from
50 * @return The hex string.
52 inline std::string BinToHex(const std::string& data)
54 return BinToHex(data.data(), data.size());