repo.or.cz
/
ghsmtp.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
log A record for block list
[ghsmtp.git]
/
Base64.hpp
blob
7f3626395982eda4f686e089c19aafe52213c771
1
#ifndef BASE64_H
2
#define BASE64_H
3
4
#include <string>
5
#include <string_view>
6
7
namespace
Base64
{
8
std
::
string
enc
(
std
::
string_view in
,
std
::
string
::
size_type wrap
=
0
);
9
std
::
string
dec
(
std
::
string_view in
);
10
}
// namespace Base64
11
12
#endif
// BASE64_H