Gitiles
Code Review
Sign In
gerrit.openbmc.org
/
openbmc
/
bmcweb
/
b4a7bfad0a3ded7a813bdb44a46383316dc49b24
/
.
/
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
);
}