This commit is contained in:
13
runner/include/base64.h
Normal file
13
runner/include/base64.h
Normal file
@ -0,0 +1,13 @@
|
||||
#ifndef BASE64_H
|
||||
#define BASE64_H
|
||||
|
||||
#include <string>
|
||||
|
||||
/**
|
||||
* Decode a Base64 encoded string to its original form
|
||||
* @param encoded The Base64 encoded string
|
||||
* @return The decoded string
|
||||
*/
|
||||
std::string base64_decode(const std::string& encoded);
|
||||
|
||||
#endif // BASE64_H
|
Reference in New Issue
Block a user