Botan 3.4.0
Crypto and TLS for C&
Public Types | Public Member Functions | Protected Member Functions | List of all members
Botan::Hex_Encoder Class Referencefinal

#include <filters.h>

Inheritance diagram for Botan::Hex_Encoder:
Botan::Filter

Public Types

enum  Case { Uppercase , Lowercase }
 

Public Member Functions

virtual bool attachable ()
 
void end_msg () override
 
 Hex_Encoder (bool newlines=false, size_t line_length=72, Case the_case=Uppercase)
 
 Hex_Encoder (Case the_case)
 
std::string name () const override
 
virtual void start_msg ()
 
void write (const uint8_t in[], size_t length) override
 

Protected Member Functions

template<typename Alloc >
void send (const std::vector< uint8_t, Alloc > &in)
 
template<typename Alloc >
void send (const std::vector< uint8_t, Alloc > &in, size_t length)
 
virtual void send (const uint8_t in[], size_t length)
 
void send (uint8_t in)
 

Detailed Description

Converts arbitrary binary data to hex strings, optionally with newlines inserted

Definition at line 541 of file filters.h.

Member Enumeration Documentation

◆ Case

Whether to use uppercase or lowercase letters for the encoded string.

Enumerator
Uppercase 
Lowercase 

Definition at line 546 of file filters.h.

Constructor & Destructor Documentation

◆ Hex_Encoder() [1/2]

Botan::Hex_Encoder::Hex_Encoder ( Case the_case)
explicit

Create a hex encoder.

Parameters
the_casethe case to use in the encoded strings.

Definition at line 33 of file hex_filt.cpp.

33 : m_casing(c), m_line_length(0) {
34 m_in.resize(HEX_CODEC_BUFFER_SIZE);
35 m_out.resize(2 * m_in.size());
36 m_counter = m_position = 0;
37}
const size_t HEX_CODEC_BUFFER_SIZE
Definition hex_filt.cpp:19

References Botan::HEX_CODEC_BUFFER_SIZE.

◆ Hex_Encoder() [2/2]

Botan::Hex_Encoder::Hex_Encoder ( bool newlines = false,
size_t line_length = 72,
Case the_case = Uppercase )

Create a hex encoder.

Parameters
newlinesshould newlines be used
line_lengthif newlines are used, how long are lines
the_casethe case to use in the encoded strings

Definition at line 24 of file hex_filt.cpp.

24 : m_casing(c), m_line_length(breaks ? length : 0) {
25 m_in.resize(HEX_CODEC_BUFFER_SIZE);
26 m_out.resize(2 * m_in.size());
27 m_counter = m_position = 0;
28}

References Botan::HEX_CODEC_BUFFER_SIZE.

Member Function Documentation

◆ attachable()

virtual bool Botan::Filter::attachable ( )
inlinevirtualinherited

Check whether this filter is an attachable filter.

Returns
true if this filter is attachable, false otherwise

Reimplemented in Botan::DataSink, and Botan::SecureQueue.

Definition at line 53 of file filter.h.

53{ return true; }

◆ end_msg()

void Botan::Hex_Encoder::end_msg ( )
overridevirtual

Notify that the current message is finished; flush buffers and do end-of-message processing (if any).

Reimplemented from Botan::Filter.

Definition at line 88 of file hex_filt.cpp.

88 {
89 encode_and_send(m_in.data(), m_position);
90 if(m_counter && m_line_length) {
91 send('\n');
92 }
93 m_counter = m_position = 0;
94}
virtual void send(const uint8_t in[], size_t length)
Definition filter.cpp:27

References Botan::Filter::send().

◆ name()

std::string Botan::Hex_Encoder::name ( ) const
inlineoverridevirtual
Returns
descriptive name for this filter

Implements Botan::Filter.

Definition at line 548 of file filters.h.

548{ return "Hex_Encoder"; }

◆ send() [1/4]

template<typename Alloc >
void Botan::Filter::send ( const std::vector< uint8_t, Alloc > & in)
inlineprotectedinherited
Parameters
insome input for the filter

Definition at line 76 of file filter.h.

76 {
77 send(in.data(), in.size());
78 }

◆ send() [2/4]

template<typename Alloc >
void Botan::Filter::send ( const std::vector< uint8_t, Alloc > & in,
size_t length )
inlineprotectedinherited
Parameters
insome input for the filter
lengththe number of bytes of in to send

Definition at line 85 of file filter.h.

85 {
86 BOTAN_ASSERT_NOMSG(length <= in.size());
87 send(in.data(), length);
88 }
#define BOTAN_ASSERT_NOMSG(expr)
Definition assert.h:59

References BOTAN_ASSERT_NOMSG.

◆ send() [3/4]

void Botan::Filter::send ( const uint8_t in[],
size_t length )
protectedvirtualinherited
Parameters
insome input for the filter
lengththe length of in

Definition at line 27 of file filter.cpp.

27 {
28 if(!length) {
29 return;
30 }
31
32 bool nothing_attached = true;
33 for(size_t j = 0; j != total_ports(); ++j) {
34 if(m_next[j]) {
35 if(!m_write_queue.empty()) {
36 m_next[j]->write(m_write_queue.data(), m_write_queue.size());
37 }
38 m_next[j]->write(input, length);
39 nothing_attached = false;
40 }
41 }
42
43 if(nothing_attached) {
44 m_write_queue += std::make_pair(input, length);
45 } else {
46 m_write_queue.clear();
47 }
48}

Referenced by Botan::Base64_Encoder::end_msg(), Botan::Base64_Decoder::end_msg(), end_msg(), Botan::Hex_Decoder::end_msg(), Botan::Base64_Decoder::write(), and Botan::Hex_Decoder::write().

◆ send() [4/4]

void Botan::Filter::send ( uint8_t in)
inlineprotectedinherited
Parameters
insome input for the filter

Definition at line 70 of file filter.h.

70{ send(&in, 1); }

References Botan::Filter::send().

Referenced by Botan::Filter::send().

◆ start_msg()

virtual void Botan::Filter::start_msg ( )
inlinevirtualinherited

Start a new message. Must be closed by end_msg() before another message can be started.

Definition at line 39 of file filter.h.

39 { /* default empty */
40 }

◆ write()

void Botan::Hex_Encoder::write ( const uint8_t input[],
size_t length )
overridevirtual

Write a portion of a message to this filter.

Parameters
inputthe input as a byte array
lengththe length of the byte array input

Implements Botan::Filter.

Definition at line 66 of file hex_filt.cpp.

66 {
67 const size_t initial_fill = std::min(m_in.size() - m_position, length);
68 copy_mem(&m_in[m_position], input, initial_fill);
69
70 if(m_position + length >= m_in.size()) {
71 encode_and_send(m_in.data(), m_in.size());
72 input += (m_in.size() - m_position);
73 length -= (m_in.size() - m_position);
74 while(length >= m_in.size()) {
75 encode_and_send(input, m_in.size());
76 input += m_in.size();
77 length -= m_in.size();
78 }
79 copy_mem(m_in.data(), input, length);
80 m_position = 0;
81 }
82 m_position += length;
83}
constexpr void copy_mem(T *out, const T *in, size_t n)
Definition mem_ops.h:146

References Botan::copy_mem().


The documentation for this class was generated from the following files: