The OpenD Programming Language

decodeBase64

Decode a Base64 encoded value, returning the buffer.

  1. ubyte[] decodeBase64(const(char)[] data, char plusChar, char slashChar)
    @safe pure
    ubyte[]
    decodeBase64
    (
    scope const(char)[] data
    ,
    char plusChar = '+'
    ,
    char slashChar = '/'
    )
  2. void decodeBase64(const(char)[] data, Appender appender, char plusChar, char slashChar)

Meta