Mini application server API for C++.
inet
Class CzzBase64
in zz_base64.h
- class CzzBase64
Base64 algoritm
- Author:
- Toni Thomsson, toni@tonjac.org
|
Method Summary |
static int |
decode( unsigned char* dst, int dstlen, const char* src, int srclen )
Decode base64 |
static int |
encode( char* dst, int dstlen, const unsigned char* src, int srclen )
Encode base64 |
CzzBase64
private CzzBase64();
~CzzBase64
public ~CzzBase64();
decode
public static int decode( unsigned char* dst, int dstlen, const char* src, int srclen );
-
Decode base64
- Parameters:
dst - Destination buffer
dstlen - Length of the destination buffer
src - Source buffer
srclen - Length of the source buffer
encode
public static int encode( char* dst, int dstlen, const unsigned char* src, int srclen );
-
Encode base64
- Parameters:
dst - Destination buffer
dstlen - Length of the destination buffer
src - Source buffer
srclen - Length of the source buffer