Botan 3.9.0
Crypto and TLS for C&
Botan::Base64_Encoder Class Referencefinal

#include <filters.h>

Inheritance diagram for Botan::Base64_Encoder:
Botan::Filter

Public Member Functions

virtual bool attachable ()
BOTAN_FUTURE_EXPLICIT Base64_Encoder (bool line_breaks=false, size_t line_length=72, bool trailing_newline=false)
void end_msg () override
std::string name () const override
virtual void start_msg ()
void write (const uint8_t input[], size_t length) override

Protected Member Functions

virtual void send (const uint8_t in[], size_t length)
void send (std::span< const uint8_t > in)
void send (std::span< const uint8_t > in, size_t length)
void send (uint8_t in)

Detailed Description

This class represents a Base64 encoder.

Definition at line 483 of file filters.h.

Constructor & Destructor Documentation

◆ Base64_Encoder()

Botan::Base64_Encoder::Base64_Encoder ( bool line_breaks = false,
size_t line_length = 72,
bool trailing_newline = false )

Create a base64 encoder.

Parameters
line_breakswhether to use line breaks in the output
line_lengththe length of the lines of the output
trailing_newlinewhether to use a trailing newline

Definition at line 20 of file b64_filt.cpp.

20 :
21 m_line_length(line_breaks ? line_length : 0),
22 m_trailing_newline(trailing_newline && line_breaks),
23 m_in(48),
24 m_out(64) {}

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 54 of file filter.h.

54{ return true; }

◆ end_msg()

void Botan::Base64_Encoder::end_msg ( )
overridevirtual

Inform the Encoder that the current message shall be closed.

Reimplemented from Botan::Filter.

Definition at line 92 of file b64_filt.cpp.

92 {
93 encode_and_send(m_in.data(), m_position, true);
94
95 if(m_trailing_newline || (m_out_position > 0 && m_line_length > 0)) {
96 send('\n');
97 }
98
99 m_out_position = m_position = 0;
100}
virtual void send(const uint8_t in[], size_t length)
Definition filter.cpp:30

References Botan::Filter::send().

◆ name()

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

Implements Botan::Filter.

Definition at line 485 of file filters.h.

485{ return "Base64_Encoder"; }

◆ send() [1/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 30 of file filter.cpp.

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

Referenced by Botan::Base64_Decoder::end_msg(), Botan::Base64_Encoder::end_msg(), Botan::Hex_Decoder::end_msg(), Botan::Hex_Encoder::end_msg(), operator=(), send(), Botan::Base64_Decoder::write(), Botan::Chain::write(), Botan::Fork::write(), and Botan::Hex_Decoder::write().

◆ send() [2/4]

void Botan::Filter::send ( std::span< const uint8_t > in)
inlineprotectedinherited
Parameters
insome input for the filter

Definition at line 78 of file filter.h.

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

References send().

Referenced by send().

◆ send() [3/4]

void Botan::Filter::send ( std::span< const uint8_t > in,
size_t length )
protectedinherited
Parameters
insome input for the filter
lengththe number of bytes of in to send

This previously took a std::vector, for which the length field (allowing using just a prefix of the vector) somewhat made sense. It makes less sense now that we are using a span here; you can just use first to get a prefix.

Definition at line 22 of file filter.cpp.

22 {
23 BOTAN_ASSERT_NOMSG(length <= in.size());
24 send(in.data(), length);
25}
#define BOTAN_ASSERT_NOMSG(expr)
Definition assert.h:75

References BOTAN_ASSERT_NOMSG, and send().

◆ send() [4/4]

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

Definition at line 73 of file filter.h.

73{ send(&in, 1); }

References send().

Referenced by 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 40 of file filter.h.

40 { /* default empty */
41 }

◆ write()

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

Input a part of a message to the encoder.

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

Implements Botan::Filter.

Definition at line 70 of file b64_filt.cpp.

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

References Botan::copy_mem().


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