VirtualBox

source: vbox/trunk/src/VBox/Runtime/common/string/base64.h@ 93103

Last change on this file since 93103 was 85124, checked in by vboxsync, 4 years ago

*: Use DECL_HIDDEN_DATA for data, DECLHIDDEN will soon be exclusively for functions. bugref:9794

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.5 KB
Line 
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*********************************************************************************************************************************/
52extern DECL_HIDDEN_DATA(const uint8_t) g_au8rtBase64CharToVal[256];
53extern DECL_HIDDEN_DATA(const char) g_szrtBase64ValToChar[64+1];
54extern DECL_HIDDEN_DATA(const size_t) g_acchrtBase64EolStyles[RTBASE64_FLAGS_EOL_STYLE_MASK + 1];
55extern 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
62DECLHIDDEN(void) rtBase64Sanity(void);
63#endif
64
65
66/**
67 * Recalcs 6-bit to 8-bit and adjust for padding.
68 */
69DECLINLINE(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 */
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