Runner.
Some checks failed
Dropshell Test / Build_and_Test (push) Failing after 21s

This commit is contained in:
Your Name
2025-05-10 12:43:25 +12:00
parent 2bcf6c530d
commit b5bc7b611d
20 changed files with 1502 additions and 0 deletions

13
runner/include/base64.h Normal file
View 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