8e5e36a184
Allow any pointer to be used as source for encoding and use char * as the return value from encoding and input value for decoding to reduce number of type casts needed in the callers. Signed-off-by: Jouni Malinen <jouni@codeaurora.org>
17 lines
556 B
C
17 lines
556 B
C
/*
|
|
* Base64 encoding/decoding (RFC1341)
|
|
* Copyright (c) 2005, Jouni Malinen <j@w1.fi>
|
|
*
|
|
* This software may be distributed under the terms of the BSD license.
|
|
* See README for more details.
|
|
*/
|
|
|
|
#ifndef BASE64_H
|
|
#define BASE64_H
|
|
|
|
char * base64_encode(const void *src, size_t len, size_t *out_len);
|
|
unsigned char * base64_decode(const char *src, size_t len, size_t *out_len);
|
|
char * base64_url_encode(const void *src, size_t len, size_t *out_len);
|
|
unsigned char * base64_url_decode(const char *src, size_t len, size_t *out_len);
|
|
|
|
#endif /* BASE64_H */
|