The OpenD Programming Language

mir.base64

@nogc Simple Base64 parsing

Members

Functions

decodeBase64
ubyte[] decodeBase64(const(char)[] data, char plusChar, char slashChar)

Decode a Base64 encoded value, returning the buffer.

decodeBase64
void decodeBase64(const(char)[] data, Appender appender, char plusChar, char slashChar)

Decode a Base64 encoded value, placing the result onto an Appender.

encodeBase64
string encodeBase64(const(ubyte)[] buf, char plusChar, char slashChar)

Encode a ubyte array as Base64, returning the encoded value.

encodeBase64
void encodeBase64(const(ubyte)[] input, Appender appender, char plusChar, char slashChar)

Encode a ubyte array as Base64, placing the result onto an Appender.

Meta

Authors

Harrison Ford