Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F112176
base64.hpp
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
base64.hpp
View Options
/*
* This file is part of libkazv.
* SPDX-FileCopyrightText: 2020-2021 Tusooa Zhu <tusooa@kazv.moe>
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
#pragma once
#include
<libkazv-config.hpp>
namespace
Kazv
{
namespace
Base64Opts
{
/**
* Bit flags for encodeBase64 and decodeBase64
*/
enum
Base64Opts
:
int
{
none
=
0x0
,
/// The default, not url-safe, unpadded
urlSafe
=
0x1
,
/// Url-safe
padded
=
0x2
,
/// Add padding
};
}
/**
* Encodes the original string to base64.
*
* @param original The original string to encode.
* @param flags Options for the encoder. See Base64Opts.
*/
std
::
string
encodeBase64
(
std
::
string
original
,
int
flags
=
Base64Opts
::
none
);
/**
* Decode base64 string.
*
* @param encoded The base64-encoded string.
* @param flags Options for the decoder. See Base64Opts.
*/
std
::
string
decodeBase64
(
std
::
string
encoded
,
int
flags
=
Base64Opts
::
none
);
}
File Metadata
Details
Attached
Mime Type
text/x-c++
Expires
Sat, Nov 23, 2:55 AM (1 d, 11 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
38821
Default Alt Text
base64.hpp (1 KB)
Attached To
Mode
rL libkazv
Attached
Detach File
Event Timeline
Log In to Comment