| Ed Tanous | a7d2cdd | 2024-07-15 11:07:27 -0700 | [diff] [blame] | 1 | #include "edk/BaseTypes.h" | 
| 2 | |||||
| 3 | /** | ||||
| 4 | * base64_decode | ||||
| 5 | * Caller is responsible for freeing the returned buffer. | ||||
| 6 | */ | ||||
| 7 | UINT8 *base64_decode(const CHAR8 *src, INT32 len, INT32 *out_len); | ||||
| 8 | |||||
| 9 | /** | ||||
| 10 | * base64_encode | ||||
| 11 | * Caller is responsible for freeing the returned buffer. | ||||
| 12 | */ | ||||
| 13 | CHAR8 *base64_encode(const UINT8 *src, INT32 len, INT32 *out_len); | ||||