wpa_supplicant / hostapd  2.5
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
base64.h
Go to the documentation of this file.
1 
5 #ifndef BASE64_H
6 #define BASE64_H
7 
8 unsigned char * base64_encode(const unsigned char *src, size_t len,
9  size_t *out_len);
10 unsigned char * base64_decode(const unsigned char *src, size_t len,
11  size_t *out_len);
12 
13 #endif /* BASE64_H */
unsigned char * base64_encode(const unsigned char *src, size_t len, size_t *out_len)
Base64 encode.
Definition: base64.c:25
unsigned char * base64_decode(const unsigned char *src, size_t len, size_t *out_len)
Base64 decode.
Definition: base64.c:95