#pragma once #include "pch.h" class Util { public: static const std::string publicKey; static const std::vector allowedHosts; static const std::vector allowedSchemes; static const std::vector allowedEmbeddedSchemes; static std::vector split(std::string s, std::string delimiter); static std::map parseArgs(std::string args); static bool isASCII(const std::string& s); static std::string toLower(std::string s); static std::string base64Decode(const std::string_view data); };