repo.or.cz
/
barry.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
- added item to gui's todo list
[barry.git]
/
src
/
base64.h
blob
f13b454ca7fb4a79773207f43c5466fd0845ff9f
1
#ifndef __BARRY_BASE64_H__
2
#define __BARRY_BASE64_H__
3
4
#include <string>
5
6
// in-memory encode / decode
7
bool
base64_encode
(
const
std
::
string
&
in
,
std
::
string
&
out
);
8
bool
base64_decode
(
const
std
::
string
&
in
,
std
::
string
&
out
);
9
10
#endif
11