mirror of
https://github.com/HavocFramework/Havoc
synced 2026-06-08 11:13:29 +00:00
10 lines
183 B
C++
10 lines
183 B
C++
#ifndef HAVOC_BASE64_H
|
|
#define HAVOC_BASE64_H
|
|
|
|
#include <string>
|
|
#include <global.hpp>
|
|
|
|
std::string HavocNamespace::Util::base64_encode(const char* buf, unsigned int bufLen);
|
|
|
|
#endif
|