/* * Copyright (C) 2016+ AzerothCore , released under GNU AGPL v3 license: https://github.com/azerothcore/azerothcore-wotlk/blob/master/LICENSE-AGPL3 * Copyright (C) 2021+ WarheadCore */ #ifndef WARHEAD_BASE32_H #define WARHEAD_BASE32_H #include "Define.h" #include "Optional.h" #include #include namespace Acore::Encoding { struct AC_COMMON_API Base32 { static std::string Encode(std::vector const& data); static Optional> Decode(std::string const& data); }; } #endif