|
Open Model Railroad Network (OpenMRN)
|
#include <string>Go to the source code of this file.
Functions | |
| std::string | base64_encode (const std::string &binary) |
| Performs encoding of data in base64 format. | |
| bool | base64_decode (const std::string &base64, std::string *data) |
| Performs decoding of data from base64 format to binary. | |
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Helper function to perform encoding & decoding of Base64 data.
Definition in file Base64.hxx.
| bool base64_decode | ( | const std::string & | base64, |
| std::string * | data | ||
| ) |
Performs decoding of data from base64 format to binary.
| base64 | base64 encoded data |
| data | decoded data will be written here. |
Definition at line 113 of file Base64.cxx.
| std::string base64_encode | ( | const std::string & | binary | ) |
Performs encoding of data in base64 format.
| binary | data to encode |
Definition at line 43 of file Base64.cxx.