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