Gitiles
Code Review
Sign In
gerrit.openbmc.org
/
openbmc
/
bmcweb
/
904063f6e5eccdd15d7a9d2a21200f99abc679ae
/
.
/
include
/
base64.hpp
blob: f5ff338cae6bfef70d3179ac9a602acc729bc2b6 [
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
);
}