#ifndef HORCRUX_SRC_UTILS_H #define HORCRUX_SRC_UTILS_H #include #include namespace utils { std::string to_base64(const std::vector& binary); std::vector from_base64(const std::string& base64); std::vector generate_random(const size_t buf_len); } #endif //HORCRUX_SRC_UTILS_H