Robotran C Documentation
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
base64.h
Go to the documentation of this file.
1 /*
2  * Base64 encoding/decoding (RFC1341)
3  * Copyright (c) 2005, Jouni Malinen <j@w1.fi>
4  *
5  * This software may be distributed under the terms of the BSD license.
6  * See README for more details.
7  */
8 
9 #ifndef BASE64_H
10 #define BASE64_H
11 
12 #include <sys/types.h>
13 
14 unsigned char * base64_encode(const unsigned char *src, size_t len,
15  size_t *out_len);
16 unsigned char * base64_decode(const unsigned char *src, size_t len,
17  size_t *out_len);
18 
19 #endif /* BASE64_H */
base64_decode
unsigned char * base64_decode(const unsigned char *src, size_t len, size_t *out_len)
base64_decode - Base64 decode @src: Data to be decoded @len: Length of the data to be decoded @out_le...
Definition: base64.c:97
base64_encode
unsigned char * base64_encode(const unsigned char *src, size_t len, size_t *out_len)
base64_encode - Base64 encode @src: Data to be encoded @len: Length of the data to be encoded @out_le...
Definition: base64.c:29