summaryrefslogtreecommitdiffstats
path: root/xbmc/utils/Base64.h
blob: 4b645eefcfa7338ee8b72732234986c39c1d2a72 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/*
 *  Copyright (C) 2011-2018 Team Kodi
 *  This file is part of Kodi - https://kodi.tv
 *
 *  SPDX-License-Identifier: GPL-2.0-or-later
 *  See LICENSES/README.md for more information.
 */

#pragma once

#include <string>

class Base64
{
public:
  static void Encode(const char* input, unsigned int length, std::string &output);
  static std::string Encode(const char* input, unsigned int length);
  static void Encode(const std::string &input, std::string &output);
  static std::string Encode(const std::string &input);
  static void Decode(const char* input, unsigned int length, std::string &output);
  static std::string Decode(const char* input, unsigned int length);
  static void Decode(const std::string &input, std::string &output);
  static std::string Decode(const std::string &input);

private:
  static const std::string m_characters;
};