Pigweed
 
Loading...
Searching...
No Matches
base64.h
1// Copyright 2020 The Pigweed Authors
2//
3// Licensed under the Apache License, Version 2.0 (the "License"); you may not
4// use this file except in compliance with the License. You may obtain a copy of
5// the License at
6//
7// https://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
11// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
12// License for the specific language governing permissions and limitations under
13// the License.
14
15// Functions for encoding and decoding data in Base64 as specified by RFC 3548
16// and RFC 4648. See https://tools.ietf.org/html/rfc4648
17#pragma once
18
19#include <stdbool.h>
20#include <stddef.h>
21
22// C-compatible versions of a subset of the pw_base64 module.
23#ifdef __cplusplus
24extern "C" {
25#endif // __cplusplus
26
27// Returns the size of the given number of bytes when encoded as Base64. Base64
28//
29// Equivalent to pw::base64::EncodedSize().
30#define PW_BASE64_ENCODED_SIZE(binary_size_bytes) \
31 (((size_t)binary_size_bytes + 2) / 3 * 4) // +2 to round up to a 3-byte group
32
33// Encodes the provided data in Base64 and writes the result to the buffer.
34// Exactly PW_BASE64_ENCODED_SIZE(binary_size_bytes) bytes will be written. The
35// output buffer *MUST* be large enough for the encoded output!
36//
37// Equivalent to pw::base64::Encode().
38void pw_Base64Encode(const void* binary_data,
39 const size_t binary_size_bytes,
40 char* output);
41
42// Evaluates to the maximum size of decoded Base64 data in bytes.
43//
44// Equivalent to pw::base64::MaxDecodedSize().
45#define PW_BASE64_MAX_DECODED_SIZE(base64_size_bytes) \
46 (((size_t)base64_size_bytes) / 4 * 3)
47
48// Decodes the provided Base64 data into raw binary. The output buffer *MUST* be
49// at least PW_BASE64_MAX_DECODED_SIZE bytes large.
50//
51// Equivalent to pw::base64::Decode().
52size_t pw_Base64Decode(const char* base64,
53 size_t base64_size_bytes,
54 void* output);
55
56// Returns true if provided char is a valid Base64 character.
57bool pw_Base64IsValidChar(char base64_char);
58
59// Returns true if the provided string is valid Base64 encoded data. Accepts
60// either the standard (+/) or URL-safe (-_) alphabets.
61//
62// Equivalent to pw::base64::IsValid().
63bool pw_Base64IsValid(const char* base64_data, size_t base64_size);
64
65// C++ API, which uses the C functions internally.
66#ifdef __cplusplus
67} // extern "C"
68
69#include <string_view>
70#include <type_traits>
71
72#include "pw_span/span.h"
73#include "pw_string/string.h"
74
75namespace pw::base64 {
76
84constexpr size_t EncodedSize(size_t binary_size_bytes) {
85 return PW_BASE64_ENCODED_SIZE(binary_size_bytes);
86}
87
104inline void Encode(span<const std::byte> binary, char* output) {
105 pw_Base64Encode(binary.data(), binary.size_bytes(), output);
106}
107
120size_t Encode(span<const std::byte> binary, span<char> output_buffer);
121
129void Encode(span<const std::byte> binary, InlineString<>& output);
130
134template <size_t kMaxBinaryDataSizeBytes>
135inline InlineString<EncodedSize(kMaxBinaryDataSizeBytes)> Encode(
136 span<const std::byte> binary) {
137 InlineString<EncodedSize(kMaxBinaryDataSizeBytes)> output;
138 Encode(binary, output);
139 return output;
140}
141
153constexpr size_t MaxDecodedSize(size_t base64_size_bytes) {
154 return PW_BASE64_MAX_DECODED_SIZE(base64_size_bytes);
155}
156
173inline size_t Decode(std::string_view base64, void* output) {
174 return pw_Base64Decode(base64.data(), base64.size(), output);
175}
176
182size_t Decode(std::string_view base64, span<std::byte> output_buffer);
183
185template <typename T>
186inline void DecodeInPlace(InlineBasicString<T>& buffer) {
187 static_assert(sizeof(T) == sizeof(char));
188 buffer.resize(Decode(buffer, buffer.data()));
189}
190
195inline bool IsValid(std::string_view base64) {
196 return pw_Base64IsValid(base64.data(), base64.size());
197}
198
203inline bool IsValidChar(char base64) { return pw_Base64IsValidChar(base64); }
204
205} // namespace pw::base64
206
207#endif // __cplusplus
InlineBasicString< char, kCapacity > InlineString
pw::InlineString is an alias of pw::InlineBasicString<char> and is equivalent to std::string.
Definition: string.h:568
pw::InlineBasicString and pw::InlineString are safer alternatives to std::basic_string and std::strin...