encodeBase64

Encode a ubyte array as Base64, returning the encoded value, which shall be destroyed with free.

  1. ubyte[] encodeBase64(const(ubyte)[] buf, char plusChar, char slashChar)
    nothrow @nogc @system
    ubyte[]
    encodeBase64
    (
    scope const(ubyte)[] buf
    ,
    char plusChar = '+'
    ,
    char slashChar = '/'
    )
  2. void encodeBase64(const(ubyte)[] input, Vec!ubyte outBuf, char plusChar, char slashChar)

Meta