scclib
Stable Cloud Computing C++ Library
hex.h
Go to the documentation of this file.
1 /*
2 BSD 3-Clause License
3 
4 Copyright (c) 2022, Stable Cloud Computing, Inc.
5 
6 Redistribution and use in source and binary forms, with or without
7 modification, are permitted provided that the following conditions are met:
8 
9 1. Redistributions of source code must retain the above copyright notice, this
10  list of conditions and the following disclaimer.
11 
12 2. Redistributions in binary form must reproduce the above copyright notice,
13  this list of conditions and the following disclaimer in the documentation
14  and/or other materials provided with the distribution.
15 
16 3. Neither the name of the copyright holder nor the names of its
17  contributors may be used to endorse or promote products derived from
18  this software without specific prior written permission.
19 
20 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
23 DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
24 FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
26 SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
27 CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
28 OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 */
31 #ifndef _SCC_ENCODE_HEX_H
32 #define _SCC_ENCODE_HEX_H
33 
34 #include <string>
35 #include <vector>
36 
37 namespace scc::encode {
38 
53 class Hex
54 {
55 public:
64  static void bin_to_hex(const std::vector<char>&, std::string&, bool = true);
65 
75  static void bin_to_hex(const void*, size_t, std::string&, bool = true);
76 
86  static std::string bin_to_hex(const std::vector<char>&, bool = true);
87 
98  static std::string bin_to_hex(const void*, size_t, bool = true);
99 
107  static void hex_to_bin(const std::string&, std::vector<char>&);
108 
119  static std::string bin_to_hexstr(const std::vector<char>&, const std::string& = "", int limit=-1, const std::string& = " +more", bool = true);
120 
133  static std::string bin_to_hexstr(const void*, size_t, const std::string& = "", int limit=-1, const std::string& = " +more", bool = true);
134 };
135 
139 } // namespace
140 
141 #endif
static void bin_to_hex(const std::vector< char > &, std::string &, bool=true)
Encode to hex from binary.
Definition: hex.cc:107
static std::string bin_to_hexstr(const std::vector< char > &, const std::string &="", int limit=-1, const std::string &=" +more", bool=true)
Binary to human readable string.
Definition: hex.cc:102
static void hex_to_bin(const std::string &, std::vector< char > &)
Decode from hex to binary.
Definition: hex.cc:126