decodeBase64

Decode a Base64 encoded value, returning a buffer to be freed with free(). null in case of error or zero size.

  1. ubyte[] decodeBase64(const(ubyte)[] data, char plusChar, char slashChar)
  2. ubyte[] decodeBase64(const(char)[] data, char plusChar, char slashChar)
    nothrow @nogc @system
    ubyte[]
    decodeBase64
    (
    scope const(char)[] data
    ,
    char plusChar = '+'
    ,
    char slashChar = '/'
    )
  3. void decodeBase64(const(ubyte)[] data, Vec!ubyte outBuffer, char plusChar, char slashChar, bool* err)

Meta