-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathbytes_to_string.cpp
More file actions
25 lines (20 loc) · 603 Bytes
/
bytes_to_string.cpp
File metadata and controls
25 lines (20 loc) · 603 Bytes
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
#include <cstdint>
#include <cstring>
#include <string>
#include <ByteConvert/ByteConvert.hpp>
int main()
{
// Set array of bytes which we will convert to string
uint8_t block[8] = {0xfa, 0xca, 0xba, 0xba, 0xde, 0xda, 0xce, 0xca};
// Set expected string
std::string expected_string = "facababadedaceca";
// Convert bytes to string (8 is size of block)
std::string converted_string = ByteConvert::block_to_hex_string(block, 8);
// Check the result
if (converted_string != expected_string) {
// Error
return -1;
}
// Success
return 0;
}