FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
node/src/base64.h at main · fetchapi/node · GitHub
fetchapi
/
node
Public
forked from
nodejs/node
Notifications
You must be signed in to change notification settings
Fork
1
Star
0
Code
Pull requests
1
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
node
/
src
/
base64.h
Copy path
More file actions
More file actions
Latest commit
History
History
History
53 lines (39 loc) · 1.43 KB
Breadcrumbs
node
/
src
/
base64.h
Copy path
File metadata and controls
53 lines (39 loc) · 1.43 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#
ifndef
SRC_BASE64_H_
#
define
SRC_BASE64_H_
#
if
defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS
#
include
"
util.h
"
#
include
<
cmath
>
#
include
<
cstddef
>
#
include
<
cstdint
>
namespace
node
{
//
// Base 64 ////
enum
class
Base64Mode
{
NORMAL
,
URL
};
static
inline
constexpr
size_t
base64_encoded_size
(
size_t
size,
Base64Mode mode = Base64Mode::
NORMAL
) {
return
mode == Base64Mode::
NORMAL
? ((size +
2
) /
3
*
4
)
:
static_cast
<
size_t
>(
std::ceil
(
static_cast
<
double
>(size *
4
) /
3
));
}
//
Doesn't check for padding at the end. Can be 1-2 bytes over.
static
inline
constexpr
size_t
base64_decoded_size_fast
(
size_t
size) {
//
1-byte input cannot be decoded
return
size >
1
? (size /
4
) *
3
+ (size %
4
+
1
) /
2
:
0
;
}
inline
uint32_t
ReadUint32BE
(
const
unsigned
char
* p);
template
<
typename
TypeName>
size_t
base64_decoded_size
(
const
TypeName* src,
size_t
size);
template
<
typename
TypeName>
size_t
base64_decode
(
char
*
const
dst,
const
size_t
dstlen,
const
TypeName*
const
src,
const
size_t
srclen);
inline
size_t
base64_encode
(
const
char
* src,
size_t
slen,
char
* dst,
size_t
dlen,
Base64Mode mode = Base64Mode::
NORMAL
);
}
//
namespace node
#
endif
//
defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS
#
endif
//
SRC_BASE64_H_
Back
|
FazBrowse Home
|
New Git URL