EHS/include/ehs/Base64.h

24 lines
315 B
C
Raw Normal View History

2024-01-31 22:28:19 -08:00
#pragma once
#include "EHS.h"
#include "Str.h"
namespace ehs
{
class Base64
{
private:
static const char ascii[];
public:
static Str_8 Encode(const Str_8 input);
static Str_8 Decode(const Str_8 input);
private:
static char Find(const char c);
static bool IsBase64(const char c);
};
}