AuroraRuntime/Include/Aurora/Parse/Base32.hpp
Reece Wilson 85c29bb203 [*] base32 encode should take a view over pointer
[*] base64->16 typo
[-] redundant explicit static parsers
2022-09-29 08:58:20 +01:00

15 lines
357 B
C++

/***
Copyright (C) 2021 J Reece Wilson (a/k/a "Reece"). All rights reserved.
File: Base32.hpp
Date: 2021-6-10
Author: Reece
***/
#pragma once
namespace Aurora::Parse
{
AUKN_SYM bool Base32Decode(const AuString &in, Memory::ByteBuffer &decoded);
AUKN_SYM bool Base32Encode(const Memory::MemoryViewRead &input, AuString &encoded);
}