VirtualBox

source: vbox/trunk/include/iprt/base64.h@ 51868

Last change on this file since 51868 was 51770, checked in by vboxsync, 10 years ago

Merged in iprt++ dev branch.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 6.7 KB
Line 
1/** @file
2 * IPRT - Base64, MIME content transfer encoding.
3 */
4
5/*
6 * Copyright (C) 2009-2010 Oracle Corporation
7 *
8 * This file is part of VirtualBox Open Source Edition (OSE), as
9 * available from http://www.virtualbox.org. This file is free software;
10 * you can redistribute it and/or modify it under the terms of the GNU
11 * General Public License (GPL) as published by the Free Software
12 * Foundation, in version 2 as it comes in the "COPYING" file of the
13 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
14 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
15 *
16 * The contents of this file may alternatively be used under the terms
17 * of the Common Development and Distribution License Version 1.0
18 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
19 * VirtualBox OSE distribution, in which case the provisions of the
20 * CDDL are applicable instead of those of the GPL.
21 *
22 * You may elect to license modified versions of this file under the
23 * terms and conditions of either the GPL or the CDDL or both.
24 */
25
26#ifndef ___iprt_base64_h
27#define ___iprt_base64_h
28
29#include <iprt/types.h>
30
31RT_C_DECLS_BEGIN
32
33/** @defgroup grp_rt_base64 RTBase64 - Base64, MIME content transfer encoding.
34 * @ingroup grp_rt
35 * @{
36 */
37
38/** @def RTBASE64_EOL_SIZE
39 * The size of the end-of-line marker. */
40#if defined(RT_OS_OS2) || defined(RT_OS_WINDOWS)
41# define RTBASE64_EOL_SIZE (sizeof("\r\n") - 1)
42#else
43# define RTBASE64_EOL_SIZE (sizeof("\n") - 1)
44#endif
45
46/**
47 * Calculates the decoded data size for a Base64 encoded string.
48 *
49 * @returns The length in bytes. -1 if the encoding is bad.
50 *
51 * @param pszString The Base64 encoded string.
52 * @param ppszEnd If not NULL, this will point to the first char
53 * following the Base64 encoded text block. If
54 * NULL the entire string is assumed to be Base64.
55 */
56RTDECL(ssize_t) RTBase64DecodedSize(const char *pszString, char **ppszEnd);
57
58/**
59 * Calculates the decoded data size for a Base64 encoded string.
60 *
61 * @returns The length in bytes. -1 if the encoding is bad.
62 *
63 * @param pszString The Base64 encoded string.
64 * @param cchStringMax The max length to decode, use RTSTR_MAX if the
65 * length of @a pszString is not known and it is
66 * really zero terminated.
67 * @param ppszEnd If not NULL, this will point to the first char
68 * following the Base64 encoded text block. If
69 * NULL the entire string is assumed to be Base64.
70 */
71RTDECL(ssize_t) RTBase64DecodedSizeEx(const char *pszString, size_t cchStringMax, char **ppszEnd);
72
73/**
74 * Decodes a Base64 encoded string into the buffer supplied by the caller.
75 *
76 * @returns IPRT status code.
77 * @retval VERR_BUFFER_OVERFLOW if the buffer is too small. pcbActual will not
78 * be set, nor will ppszEnd.
79 * @retval VERR_INVALID_BASE64_ENCODING if the encoding is wrong.
80 *
81 * @param pszString The Base64 string. Whether the entire string or
82 * just the start of the string is in Base64 depends
83 * on whether ppszEnd is specified or not.
84 * @param pvData Where to store the decoded data.
85 * @param cbData The size of the output buffer that pvData points to.
86 * @param pcbActual Where to store the actual number of bytes returned.
87 * Optional.
88 * @param ppszEnd Indicates that the string may contain other stuff
89 * after the Base64 encoded data when not NULL. Will
90 * be set to point to the first char that's not part of
91 * the encoding. If NULL the entire string must be part
92 * of the Base64 encoded data.
93 */
94RTDECL(int) RTBase64Decode(const char *pszString, void *pvData, size_t cbData, size_t *pcbActual, char **ppszEnd);
95
96/**
97 * Decodes a Base64 encoded string into the buffer supplied by the caller.
98 *
99 * @returns IPRT status code.
100 * @retval VERR_BUFFER_OVERFLOW if the buffer is too small. pcbActual will not
101 * be set, nor will ppszEnd.
102 * @retval VERR_INVALID_BASE64_ENCODING if the encoding is wrong.
103 *
104 * @param pszString The Base64 string. Whether the entire string or
105 * just the start of the string is in Base64 depends
106 * on whether ppszEnd is specified or not.
107 * @param cchStringMax The max length to decode, use RTSTR_MAX if the
108 * length of @a pszString is not known and it is
109 * really zero terminated.
110 * @param pvData Where to store the decoded data.
111 * @param cbData The size of the output buffer that pvData points to.
112 * @param pcbActual Where to store the actual number of bytes returned.
113 * Optional.
114 * @param ppszEnd Indicates that the string may contain other stuff
115 * after the Base64 encoded data when not NULL. Will
116 * be set to point to the first char that's not part of
117 * the encoding. If NULL the entire string must be part
118 * of the Base64 encoded data.
119 */
120RTDECL(int) RTBase64DecodeEx(const char *pszString, size_t cchStringMax, void *pvData, size_t cbData,
121 size_t *pcbActual, char **ppszEnd);
122
123/**
124 * Calculates the length of the Base64 encoding of a given number of bytes of
125 * data.
126 *
127 * This will assume line breaks every 64 chars. A RTBase64EncodedLengthEx
128 * function can be added if closer control over the output is found to be
129 * required.
130 *
131 * @returns The Base64 string length.
132 * @param cbData The number of bytes to encode.
133 */
134RTDECL(size_t) RTBase64EncodedLength(size_t cbData);
135
136/**
137 * Encodes the specifed data into a Base64 string, the caller supplies the
138 * output buffer.
139 *
140 * This will make the same assumptions about line breaks and EOL size as
141 * RTBase64EncodedLength() does. A RTBase64EncodeEx function can be added if
142 * more strict control over the output formatting is found necessary.
143 *
144 * @returns IRPT status code.
145 * @retval VERR_BUFFER_OVERFLOW if the output buffer is too small. The buffer
146 * may contain an invalid Base64 string.
147 *
148 * @param pvData The data to encode.
149 * @param cbData The number of bytes to encode.
150 * @param pszBuf Where to put the Base64 string.
151 * @param cbBuf The size of the output buffer, including the terminator.
152 * @param pcchActual The actual number of characters returned.
153 */
154RTDECL(int) RTBase64Encode(const void *pvData, size_t cbData, char *pszBuf, size_t cbBuf, size_t *pcchActual);
155
156/** @} */
157
158RT_C_DECLS_END
159
160#endif
161
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette