testing
This commit is contained in:
9
Base64_Encoding/include/base64_encoder.h
Normal file
9
Base64_Encoding/include/base64_encoder.h
Normal file
@@ -0,0 +1,9 @@
|
||||
#ifndef BASE64_ENCODER_H
|
||||
#define BASE64_ENCODER_H
|
||||
|
||||
#include <stddef.h> // Include this to define size_t
|
||||
|
||||
char *base64_encode(const unsigned char *data, size_t input_length, size_t *output_length);
|
||||
unsigned char *base64_decode(const char *data, size_t input_length, size_t *output_length);
|
||||
|
||||
#endif // BASE64_ENCODER_H
|
||||
Reference in New Issue
Block a user