Mini application server API for C++.

 Overview   Project   Class   Tree   Deprecated   Index 
FRAMES    NO FRAMES
SUMMARY:  INNER | FIELD | CONSTR | METHOD

inet
Class CzzBase64

   in zz_base64.h

class CzzBase64

Base64 algoritm

Author:
Toni Thomsson, toni@tonjac.org

Constructor Summary
private  CzzBase64()
          
  ~CzzBase64()
          
 
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
 

Constructor Detail

CzzBase64

private CzzBase64();

~CzzBase64

public ~CzzBase64();


Method Detail

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

 Overview   Project   Class   Tree   Deprecated   Index 
FRAMES    NO FRAMES
SUMMARY:  INNER | FIELD | CONSTR | METHOD