This repository has been archived on 2023-10-10. You can view files and clone it, but cannot push or open issues/pull-requests.
hackfridge/terminal/base64.h

8 lines
198 B
C

#ifndef __BASE64_H__
#define __BASE64_H__
//char *base64_encode(const char *data, size_t input_length, size_t *output_length);
void bin_to_b64(char *out, char* in, unsigned int in_length);
#endif