NS-3 based Named Data Networking (NDN) simulator
ndnSIM 2.5: NDN, CCN, CCNx, content centric networks
API Documentation
hex-encode.cpp
Go to the documentation of this file.
1
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2
/*
3
* Copyright (c) 2013-2021 Regents of the University of California.
4
*
5
* This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions).
6
*
7
* ndn-cxx library is free software: you can redistribute it and/or modify it under the
8
* terms of the GNU Lesser General Public License as published by the Free Software
9
* Foundation, either version 3 of the License, or (at your option) any later version.
10
*
11
* ndn-cxx library is distributed in the hope that it will be useful, but WITHOUT ANY
12
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
13
* PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
14
*
15
* You should have received copies of the GNU General Public License and GNU Lesser
16
* General Public License along with ndn-cxx, e.g., in COPYING.md file. If not, see
17
* <http://www.gnu.org/licenses/>.
18
*
19
* See AUTHORS.md for complete list of ndn-cxx authors and contributors.
20
*/
21
22
#include "
ndn-cxx/security/transform/hex-encode.hpp
"
23
24
namespace
ndn
{
25
namespace
security
{
26
namespace
transform
{
27
28
static
const
uint8_t
H2CL
[] = {
29
'0'
,
'1'
,
'2'
,
'3'
,
'4'
,
'5'
,
'6'
,
'7'
,
30
'8'
,
'9'
,
'a'
,
'b'
,
'c'
,
'd'
,
'e'
,
'f'
31
};
32
static_assert(std::extent<decltype(H2CL)>::
value
== 16,
""
);
33
34
static
const
uint8_t
H2CU
[] = {
35
'0'
,
'1'
,
'2'
,
'3'
,
'4'
,
'5'
,
'6'
,
'7'
,
36
'8'
,
'9'
,
'A'
,
'B'
,
'C'
,
'D'
,
'E'
,
'F'
37
};
38
static_assert(std::extent<decltype(H2CU)>::
value
== 16,
""
);
39
40
41
HexEncode::HexEncode
(
bool
useUpperCase)
42
: m_useUpperCase(useUpperCase)
43
{
44
}
45
46
size_t
47
HexEncode::convert(span<const uint8_t> data)
48
{
49
setOutputBuffer
(toHex(data.data(), data.size()));
50
return
data.size();
51
}
52
53
unique_ptr<Transform::OBuffer>
54
HexEncode::toHex(
const
uint8_t* data,
size_t
dataLen)
55
{
56
auto
encoded = make_unique<OBuffer>(dataLen * 2);
57
uint8_t* buf = encoded->data();
58
const
uint8_t* encodePad = m_useUpperCase ?
H2CU
:
H2CL
;
59
60
for
(
size_t
i = 0; i < dataLen; i++) {
61
buf[0] = encodePad[(data[i] >> 4) & 0x0F];
62
buf[1] = encodePad[data[i] & 0x0F];
63
buf += 2;
64
}
65
66
return
encoded;
67
}
68
69
unique_ptr<Transform>
70
hexEncode
(
bool
useUpperCase)
71
{
72
return
make_unique<HexEncode>(useUpperCase);
73
}
74
75
}
// namespace transform
76
}
// namespace security
77
}
// namespace ndn
ndn
Copyright (c) 2011-2015 Regents of the University of California.
Definition:
ndn-strategy-choice-helper.hpp:34
ndn::security::transform::hexEncode
unique_ptr< Transform > hexEncode(bool useUpperCase)
Definition:
hex-encode.cpp:70
ndn::security::transform::H2CU
static const uint8_t H2CU[]
Definition:
hex-encode.cpp:34
hex-encode.hpp
ndn::security::transform::H2CL
static const uint8_t H2CL[]
Definition:
hex-encode.cpp:28
ndn::security::transform::Transform::setOutputBuffer
void setOutputBuffer(unique_ptr< OBuffer > buffer)
Set output buffer to buffer.
Definition:
transform-base.cpp:86
ndn::security::transform::HexEncode::HexEncode
HexEncode(bool useUpperCase=false)
Create a hex encoding module.
Definition:
hex-encode.cpp:41
transform
ndn::security
Definition:
dummy-keychain.cpp:28
websocketpp::session::state::value
value
Definition:
connection.hpp:179
ndnSIM
ndn-cxx
ndn-cxx
security
transform
hex-encode.cpp
Generated on Fri May 6 2022 12:34:13 for ndnSIM by
1.8.13