This abstract class provides part of the functionality of the Base 64 encoding/decoding
This abstract class provides part of the functionality of the Base 64 encoding/decoding. The rest of the functionality is provided by the subclass implementors. Typically the clients will not deal with an instance of this class directly, instead they interact with the Base64 reference-count pointer.Usage try { string data = "1234567890"; string enc = Base64::encode(data); string dec = Base64::decode(enc); if (dec == enc) { cout << "** Base64 Encoding/Decoding WORKED **"; } else { cout << "!! Base64 Encoding/Decoding FAILED !!"; } } catch(Exception& ex) {.....}
alphabetic index hierarchy of classes
this page has been generated automatically by doc++
(c)opyright by Malte Zöckler, Roland Wunderling
contact: doc++@zib.de