![]() |
RDKit
Open-source cheminformatics and machine learning.
|
Functionality for base64 encoding/decoding. More...
#include <RDGeneral/export.h>Go to the source code of this file.
Functions | |
| RDKIT_DATASTRUCTS_EXPORT char * | Base64Encode (const unsigned char *, const unsigned int) |
| return the base64 encoding of an array of unsigned chars | |
| RDKIT_DATASTRUCTS_EXPORT char * | Base64Encode (const char *, const unsigned int) |
| return the base64 encoding of an array of chars | |
| RDKIT_DATASTRUCTS_EXPORT char * | Base64Decode (const char *, unsigned int *) |
| return the decoded version of a base64 encoded char array | |
Functionality for base64 encoding/decoding.
Definition in file base64.h.
| RDKIT_DATASTRUCTS_EXPORT char * Base64Decode | ( | const char * | , |
| unsigned int * | ) |
return the decoded version of a base64 encoded char array
Note: The caller is responsible for calling delete[] on the char array returned by this function.
References RDKIT_DATASTRUCTS_EXPORT.
| RDKIT_DATASTRUCTS_EXPORT char * Base64Encode | ( | const char * | , |
| const unsigned int | ) |
return the base64 encoding of an array of chars
Note: The caller is responsible for calling delete[] on the char array returned by this function.
References RDKIT_DATASTRUCTS_EXPORT.
| RDKIT_DATASTRUCTS_EXPORT char * Base64Encode | ( | const unsigned char * | , |
| const unsigned int | ) |
return the base64 encoding of an array of unsigned chars
Note: The caller is responsible for calling delete[] on the char array returned by this function.
References RDKIT_DATASTRUCTS_EXPORT.