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