1 | /* $Id: base64.h 85124 2020-07-08 21:13:30Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * IPRT - Base64, MIME content transfer encoding, internal header.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2009-2020 Oracle Corporation
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | * available from http://www.virtualbox.org. This file is free software;
|
---|
11 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | * General Public License (GPL) as published by the Free Software
|
---|
13 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | *
|
---|
17 | * The contents of this file may alternatively be used under the terms
|
---|
18 | * of the Common Development and Distribution License Version 1.0
|
---|
19 | * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
|
---|
20 | * VirtualBox OSE distribution, in which case the provisions of the
|
---|
21 | * CDDL are applicable instead of those of the GPL.
|
---|
22 | *
|
---|
23 | * You may elect to license modified versions of this file under the
|
---|
24 | * terms and conditions of either the GPL or the CDDL or both.
|
---|
25 | */
|
---|
26 |
|
---|
27 | #ifndef IPRT_INCLUDED_SRC_common_string_base64_h
|
---|
28 | #define IPRT_INCLUDED_SRC_common_string_base64_h
|
---|
29 | #ifndef RT_WITHOUT_PRAGMA_ONCE
|
---|
30 | # pragma once
|
---|
31 | #endif
|
---|
32 |
|
---|
33 |
|
---|
34 | /*********************************************************************************************************************************
|
---|
35 | * Defined Constants And Macros *
|
---|
36 | *********************************************************************************************************************************/
|
---|
37 | /** The line length used for encoding. */
|
---|
38 | #define RTBASE64_LINE_LEN 64
|
---|
39 |
|
---|
40 | /** @name Special g_au8rtBase64CharToVal values
|
---|
41 | * @{ */
|
---|
42 | #define BASE64_SPACE 0xc0
|
---|
43 | #define BASE64_PAD 0xe0
|
---|
44 | #define BASE64_NULL 0xfe
|
---|
45 | #define BASE64_INVALID 0xff
|
---|
46 | /** @} */
|
---|
47 |
|
---|
48 |
|
---|
49 | /*********************************************************************************************************************************
|
---|
50 | * Global Variables *
|
---|
51 | *********************************************************************************************************************************/
|
---|
52 | extern DECL_HIDDEN_DATA(const uint8_t) g_au8rtBase64CharToVal[256];
|
---|
53 | extern DECL_HIDDEN_DATA(const char) g_szrtBase64ValToChar[64+1];
|
---|
54 | extern DECL_HIDDEN_DATA(const size_t) g_acchrtBase64EolStyles[RTBASE64_FLAGS_EOL_STYLE_MASK + 1];
|
---|
55 | extern DECL_HIDDEN_DATA(const char) g_aachrtBase64EolStyles[RTBASE64_FLAGS_EOL_STYLE_MASK + 1][2];
|
---|
56 |
|
---|
57 |
|
---|
58 | /*********************************************************************************************************************************
|
---|
59 | * Internal Functions *
|
---|
60 | *********************************************************************************************************************************/
|
---|
61 | #ifdef RT_STRICT
|
---|
62 | DECLHIDDEN(void) rtBase64Sanity(void);
|
---|
63 | #endif
|
---|
64 |
|
---|
65 |
|
---|
66 | /**
|
---|
67 | * Recalcs 6-bit to 8-bit and adjust for padding.
|
---|
68 | */
|
---|
69 | DECLINLINE(ssize_t) rtBase64DecodedSizeRecalc(uint32_t c6Bits, unsigned cbPad)
|
---|
70 | {
|
---|
71 | size_t cb;
|
---|
72 | if (c6Bits * 3 / 3 == c6Bits)
|
---|
73 | {
|
---|
74 | if ((c6Bits * 3 % 4) != 0)
|
---|
75 | return -1;
|
---|
76 | cb = c6Bits * 3 / 4;
|
---|
77 | }
|
---|
78 | else
|
---|
79 | {
|
---|
80 | if ((c6Bits * (uint64_t)3 % 4) != 0)
|
---|
81 | return -1;
|
---|
82 | cb = c6Bits * (uint64_t)3 / 4;
|
---|
83 | }
|
---|
84 |
|
---|
85 | if (cb < cbPad)
|
---|
86 | return -1;
|
---|
87 | cb -= cbPad;
|
---|
88 | return cb;
|
---|
89 | }
|
---|
90 |
|
---|
91 | #endif /* !IPRT_INCLUDED_SRC_common_string_base64_h */
|
---|