GM6000 Digital Heater Controller Branch: main
SDX-1330
Base64.h
Go to the documentation of this file.
1#ifndef Cpl_Text_Encoding_Base64_h_
2#define Cpl_Text_Encoding_Base64_h_
3/*-----------------------------------------------------------------------------
4* Base64 encoding/decoding (RFC1341)
5* Copyright (c) 2005-2011, Jouni Malinen <j@w1.fi>
6*
7* This software may be distributed under the terms of the BSD license.
8
9* This file is modification of Jouni Malinen code to remove the dynamic
10* memory allocation.
11*----------------------------------------------------------------------------*/
12/** @file */
13
14
15#include "Cpl/Text/String.h"
16
17
18
19///
20namespace Cpl {
21///
22namespace Text {
23///
24namespace Encoding {
25
26/** This method encodes the specified binary data as Base64 (standard, with
27 padding). See https://datatracker.ietf.org/doc/html/rfc4648#section-4
28
29 The caller is required to provide the memory to hold the encoded output.
30
31 'dstSize' is ASSUMED to include space for the null terminator.
32
33 When 'insertMIMELineFeeds' is true, the output has non-encoded line feeds
34 added to the output string to restrict the output line length to 76
35 characters.
36
37 The method returns true if the encoding succeeded; else false is returned
38 (e.g. insufficient output memory)
39 */
40bool base64Encode( const void *binarySrc,
41 size_t binarySrcLen,
42 char* dstEncodedText,
43 size_t dstSize,
44 size_t& encodedOutputStringLen,
45 bool insertMIMELineFeeds=false);
46
47
48
49/** This method decodes a Base64 string to its binary representation
50
51 The caller is required to provide the memory to hold the encoded output.
52
53 The method returns true if the decoding succeeded; else false is returned
54 (e.g. insufficient output memory)
55*/
56bool base64Decode( const char* encodedTextSrc,
57 size_t encodedTextSrcLen,
58 void* dstBinary,
59 size_t dstSize,
60 size_t& dstBinaryLen );
61
62} // end namespaces
63}
64}
65#endif // end header latch
bool base64Decode(const char *encodedTextSrc, size_t encodedTextSrcLen, void *dstBinary, size_t dstSize, size_t &dstBinaryLen)
This method decodes a Base64 string to its binary representation.
bool base64Encode(const void *binarySrc, size_t binarySrcLen, char *dstEncodedText, size_t dstSize, size_t &encodedOutputStringLen, bool insertMIMELineFeeds=false)
This method encodes the specified binary data as Base64 (standard, with padding).
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20