ROOT
6.06/09
Reference Guide
|
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 | 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... | |
static TString | Decode (const char *data) |
Decode a base64 string date into a generic TString. 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 140 of file TBase64.cxx.
Referenced by TAuthenticate::ProofAuthSetup().
|
static |
Transform data into a null terminated base64 string.
Definition at line 113 of file TBase64.cxx.
Referenced by TWebFile::BasicAuthentication(), TS3HTTPRequest::ComputeSignature(), and TAuthenticate::ProofAuthSetup().
Transform len bytes from data into a null terminated base64 string.
Definition at line 121 of file TBase64.cxx.