PostgreSQL Source Code
git master
Toggle main menu visibility
Main Page
Related Pages
Namespaces
Namespace List
Namespace Members
All
a
c
d
g
h
i
k
l
m
p
r
s
t
Functions
Variables
Data Structures
Data Structures
Data Structure Index
Class Hierarchy
Data Fields
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
c
d
f
h
i
n
o
p
r
s
t
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerations
Files
File List
Globals
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerations
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
Enumerator
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Macros
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
•
All
Data Structures
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Macros
Pages
base64.h
Go to the documentation of this file.
1
/*
2
* base64.h
3
* Encoding and decoding routines for base64 without whitespace
4
* support.
5
*
6
* Portions Copyright (c) 2001-2025, PostgreSQL Global Development Group
7
*
8
* src/include/common/base64.h
9
*/
10
#ifndef BASE64_H
11
#define BASE64_H
12
13
/* base 64 */
14
pg_nodiscard
extern
int
pg_b64_encode
(
const
char
*src,
int
len
,
char
*dst,
int
dstlen);
15
pg_nodiscard
extern
int
pg_b64_decode
(
const
char
*src,
int
len
,
char
*dst,
int
dstlen);
16
extern
int
pg_b64_enc_len
(
int
srclen);
17
extern
int
pg_b64_dec_len
(
int
srclen);
18
19
#endif
/* BASE64_H */
pg_b64_encode
pg_nodiscard int pg_b64_encode(const char *src, int len, char *dst, int dstlen)
Definition:
base64.c:49
pg_b64_enc_len
int pg_b64_enc_len(int srclen)
Definition:
base64.c:224
pg_b64_decode
pg_nodiscard int pg_b64_decode(const char *src, int len, char *dst, int dstlen)
Definition:
base64.c:116
pg_b64_dec_len
int pg_b64_dec_len(int srclen)
Definition:
base64.c:239
pg_nodiscard
#define pg_nodiscard
Definition:
c.h:145
len
const void size_t len
Definition:
pg_crc32c_sse42.c:28
src
include
common
base64.h
Generated on Tue Apr 29 2025 00:13:27 for PostgreSQL Source Code by
1.9.4