|
Odil
A C++11 library for the DICOM standard
|
Functions | |
| template<typename TInputIterator , typename TOutputIterator > | |
| void | encode (TInputIterator begin, TInputIterator end, TOutputIterator destination) |
| Encode a sequence of 8 bits data to Base64. More... | |
| template<typename TInputIterator , typename TOutputIterator > | |
| void | decode (TInputIterator begin, TInputIterator end, TOutputIterator destination) |
| Decode a sequence of 8 bits data from Base64. More... | |
Variables | |
| std::string const | symbols |
| Dictionary of symbols for Base64. More... | |
| std::string const | reversed_symbols |
| Mapping of ASCII characters to values of Base64 symbols. More... | |
| void odil::base64::decode | ( | TInputIterator | begin, |
| TInputIterator | end, | ||
| TOutputIterator | destination | ||
| ) |
Decode a sequence of 8 bits data from Base64.
| void odil::base64::encode | ( | TInputIterator | begin, |
| TInputIterator | end, | ||
| TOutputIterator | destination | ||
| ) |
Encode a sequence of 8 bits data to Base64.
| std::string const odil::base64::reversed_symbols |
Mapping of ASCII characters to values of Base64 symbols.
| std::string const odil::base64::symbols |
Dictionary of symbols for Base64.
1.8.13