Gitiles
Code Review
Sign In
gerrit.openbmc.org
/
openbmc
/
bmcweb
/
9992332be956c173199257b55e592ec2d2331e3a
/
.
/
include
/
base64.hpp
blob: e024d0a48f423073e06d9a31b095f0a25ba04860 [
file
] [
log
] [
blame
]
#include
<
gsl
/
string_span
>
#include
<string>
namespace
base64
{
bool
base64_encode
(
const
gsl
::
cstring_span
<>
&
input
,
std
::
string
&
output
);
bool
base64_decode
(
const
gsl
::
cstring_span
<>
&
input
,
std
::
string
&
output
);
}