JunkBox_Lib++ (for Windows) 1.10.1
Loading...
Searching...
No Matches
Base64 Class Reference

#include <tools++.h>

Public Member Functions

 Base64 (void)
 
virtual ~Base64 (void)
 
unsigned char * encode (unsigned char *str, int sz)
 
unsigned char * decode (unsigned char *str, int *sz)
 
Buffer encode (Buffer buf)
 
Buffer decode (Buffer buf)
 
Buffer encode_Buffer_bin (unsigned char *str, int sz, int nopad=FALSE)
 
 Base64 (void)
 
virtual ~Base64 (void)
 
unsigned char * encode (unsigned char *str, int sz)
 
unsigned char * decode (unsigned char *str, int *sz)
 
Buffer encode (Buffer buf)
 
Buffer decode (Buffer buf)
 

Private Member Functions

void init (void)
 
void free (void)
 
void init (void)
 
void free (void)
 

Detailed Description

Class Base64

unsigned char* を返す encode(), decode()free() が必要

Definition at line 171 of file tools++.h.

Constructor & Destructor Documentation

◆ Base64() [1/2]

Base64 ( void )
inline

Definition at line 174 of file tools++.h.

174{ init();}
void init(void)
Definition tools++.h:178

References Base64::init().

Here is the call graph for this function:

◆ ~Base64() [1/2]

virtual ~Base64 ( void )
inlinevirtual

Definition at line 175 of file tools++.h.

175{ free();}
void free(void)
Definition tools++.h:179

References Base64::free().

Here is the call graph for this function:

◆ Base64() [2/2]

Base64 ( void )
inline

Definition at line 215 of file tools++_alt.h.

215{ init();}

References Base64::init().

Here is the call graph for this function:

◆ ~Base64() [2/2]

virtual ~Base64 ( void )
inlinevirtual

Definition at line 216 of file tools++_alt.h.

216{ free();}

References Base64::free().

Here is the call graph for this function:

Member Function Documentation

◆ decode() [1/4]

Buffer decode ( Buffer buf)
inline

Definition at line 187 of file tools++.h.

187{ return decode_base64_Buffer(buf);}
Buffer decode_base64_Buffer(Buffer str)
strのバッファを Base64からデコードする
Definition buffer.cpp:850

References decode_base64_Buffer().

Here is the call graph for this function:

◆ decode() [2/4]

Buffer decode ( Buffer buf)
inline

Definition at line 228 of file tools++_alt.h.

228{ return decode_base64_Buffer(buf);}

References decode_base64_Buffer().

Here is the call graph for this function:

◆ decode() [3/4]

unsigned char * decode ( unsigned char * str,
int * sz )
inline

Definition at line 185 of file tools++.h.

185{ return decode_base64(str, sz);}
unsigned char * decode_base64(unsigned char *buf, int *sz)
bufを base64からデコードする.要 free()
Definition tools.cpp:2786

References decode_base64().

Here is the call graph for this function:

◆ decode() [4/4]

unsigned char * decode ( unsigned char * str,
int * sz )
inline

Definition at line 226 of file tools++_alt.h.

226{ return decode_base64(str, sz);}

References decode_base64().

Here is the call graph for this function:

◆ encode() [1/4]

Buffer encode ( Buffer buf)
inline

Definition at line 186 of file tools++.h.

186{ return encode_base64_Buffer(buf);}
Buffer encode_base64_Buffer(Buffer buf)
バイナリデータ buf.bufの buf.vldszバイトを Base64にエンコード する
Definition buffer.cpp:804

References encode_base64_Buffer().

Here is the call graph for this function:

◆ encode() [2/4]

Buffer encode ( Buffer buf)
inline

Definition at line 227 of file tools++_alt.h.

227{ return encode_base64_Buffer(buf);}

References encode_base64_Buffer().

Here is the call graph for this function:

◆ encode() [3/4]

unsigned char * encode ( unsigned char * str,
int sz )
inline

Definition at line 184 of file tools++.h.

184{ return encode_base64(str, sz);}
unsigned char * encode_base64(unsigned char *buf, int sz)
バイナリデータ bufを base64にエンコードする.要 free()
Definition tools.cpp:2848

References encode_base64().

Here is the call graph for this function:

◆ encode() [4/4]

unsigned char * encode ( unsigned char * str,
int sz )
inline

Definition at line 225 of file tools++_alt.h.

225{ return encode_base64(str, sz);}

References encode_base64().

Here is the call graph for this function:

◆ encode_Buffer_bin()

Buffer encode_Buffer_bin ( unsigned char * str,
int sz,
int nopad = FALSE )
inline

Definition at line 189 of file tools++.h.

189{ return encode_base64_Buffer_bin(str, sz, nopad);}
Buffer encode_base64_Buffer_bin(unsigned char *bin, unsigned int sz, int nopad)
sz バイトの バイナリデータ binを Base64にエンコード する.
Definition buffer.cpp:881

References encode_base64_Buffer_bin().

Here is the call graph for this function:

◆ free() [1/2]

void free ( void )
inlineprivate

Definition at line 179 of file tools++.h.

179{ }

Referenced by Base64::~Base64().

Here is the caller graph for this function:

◆ free() [2/2]

void free ( void )
inlineprivate

Definition at line 220 of file tools++_alt.h.

220{ }

◆ init() [1/2]

void init ( void )
inlineprivate

Definition at line 178 of file tools++.h.

178{ }

Referenced by Base64::Base64().

Here is the caller graph for this function:

◆ init() [2/2]

void init ( void )
inlineprivate

Definition at line 219 of file tools++_alt.h.

219{ }

The documentation for this class was generated from the following files: