The OpenD Programming Language

encodeBase64

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

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

Meta