This code implements the Base64 encoding and decoding.
Base64 encoded messages are typically used in authentication protocols and to pack binary data in HTTP messages.
Public Member Functions | |
| virtual | ~TBase64 () | 
Static Public Member Functions | |
| static TString | Decode (const char *data) | 
| Decode a base64 string date into a generic TString.  More... | |
| static TString | Encode (const char *data) | 
| Transform data into a null terminated base64 string.  More... | |
| static TString | Encode (const char *data, Int_t len) | 
| Transform len bytes from data into a null terminated base64 string.  More... | |
#include <TBase64.h>
      
  | 
  static | 
Decode a base64 string date into a generic TString.
No check for base64-ness of input characters.
Definition at line 142 of file TBase64.cxx.
      
  | 
  static | 
Transform data into a null terminated base64 string.
Definition at line 115 of file TBase64.cxx.
Transform len bytes from data into a null terminated base64 string.
Definition at line 123 of file TBase64.cxx.