OSBase64.h
Go to the documentation of this file.
1 /* $Id: OSBase64.h 5284 2017-12-08 13:52:50Z stefan $ */
16 #ifndef BASE64_H
17 #define BASE64_H
18 
19 #include <string>
20 
33 class Base64
34 {
35 public:
36 
37 
39  Base64();
40 
42  ~Base64();
43 
51  static std::string encodeb64(char* bytes, int size);
52 
59  static std::string decodeb64(char* b64bytes);
60 };//class Base64
61 
62 
63 #endif
64 
~Base64()
Base64 class destructor.
static std::string encodeb64(char *bytes, int size)
encode the data in base 64
Definition: OSBase64.cpp:33
Base64()
Base64 class constructor.
use this class to read and write data in base64.
Definition: OSBase64.h:33
static std::string decodeb64(char *b64bytes)
decode the data in base 64
Definition: OSBase64.cpp:87