This file contains some simple 8bit-to-6bit encoding/deconding routines. More...
#include "GKlib.h"
Go to the source code of this file.
Macros | |
#define | B64OFFSET 48 /* This is the '0' number */ |
Functions | |
void | decodeblock (unsigned char *in, unsigned char *out) |
void | encodeblock (unsigned char *in, unsigned char *out) |
void | GKDecodeBase64 (int nbytes, unsigned char *inbuffer, unsigned char *outbuffer) |
void | GKEncodeBase64 (int nbytes, unsigned char *inbuffer, unsigned char *outbuffer) |
This file contains some simple 8bit-to-6bit encoding/deconding routines.
Most of these routines are outdated and should be converted using glibc's equivalent routines.
$Id: b64.c 10711 2011-08-31 22:23:04Z karypis $
$Copyright$ $License$
Definition in file b64.c.
void GKDecodeBase64 | ( | int | nbytes, |
unsigned char * | inbuffer, | ||
unsigned char * | outbuffer | ||
) |