Package io.netty.handler.codec.base64
Class Base64
- java.lang.Object
-
- io.netty.handler.codec.base64.Base64
-
public final class Base64 extends java.lang.ObjectUtility class forByteBufthat encodes and decodes to and from Base64 notation.The encoding and decoding algorithm in this class has been derived from Robert Harder's Public Domain Base64 Encoder/Decoder.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ByteBufdecode(ByteBuf src)static ByteBufdecode(ByteBuf src, int off, int len)static ByteBufdecode(ByteBuf src, int off, int len, Base64Dialect dialect)static ByteBufdecode(ByteBuf src, int off, int len, Base64Dialect dialect, ByteBufAllocator allocator)static ByteBufdecode(ByteBuf src, Base64Dialect dialect)static ByteBufencode(ByteBuf src)static ByteBufencode(ByteBuf src, boolean breakLines)static ByteBufencode(ByteBuf src, boolean breakLines, boolean addPadding)static ByteBufencode(ByteBuf src, boolean breakLines, Base64Dialect dialect)static ByteBufencode(ByteBuf src, boolean breakLines, Base64Dialect dialect, boolean addPadding)static ByteBufencode(ByteBuf src, int off, int len)static ByteBufencode(ByteBuf src, int off, int len, boolean breakLines)static ByteBufencode(ByteBuf src, int off, int len, boolean breakLines, Base64Dialect dialect)static ByteBufencode(ByteBuf src, int off, int len, boolean breakLines, Base64Dialect dialect, boolean addPadding)static ByteBufencode(ByteBuf src, int off, int len, boolean breakLines, Base64Dialect dialect, ByteBufAllocator allocator)static ByteBufencode(ByteBuf src, int off, int len, Base64Dialect dialect)static ByteBufencode(ByteBuf src, Base64Dialect dialect)static ByteBufencode(ByteBuf src, Base64Dialect dialect, boolean addPadding)
-
-
-
Method Detail
-
encode
public static ByteBuf encode(ByteBuf src, Base64Dialect dialect)
-
encode
public static ByteBuf encode(ByteBuf src, Base64Dialect dialect, boolean addPadding)
-
encode
public static ByteBuf encode(ByteBuf src, boolean breakLines, Base64Dialect dialect)
-
encode
public static ByteBuf encode(ByteBuf src, boolean breakLines, Base64Dialect dialect, boolean addPadding)
-
encode
public static ByteBuf encode(ByteBuf src, int off, int len, Base64Dialect dialect)
-
encode
public static ByteBuf encode(ByteBuf src, int off, int len, boolean breakLines, Base64Dialect dialect)
-
encode
public static ByteBuf encode(ByteBuf src, int off, int len, boolean breakLines, Base64Dialect dialect, boolean addPadding)
-
encode
public static ByteBuf encode(ByteBuf src, int off, int len, boolean breakLines, Base64Dialect dialect, ByteBufAllocator allocator)
-
decode
public static ByteBuf decode(ByteBuf src, Base64Dialect dialect)
-
decode
public static ByteBuf decode(ByteBuf src, int off, int len, Base64Dialect dialect)
-
decode
public static ByteBuf decode(ByteBuf src, int off, int len, Base64Dialect dialect, ByteBufAllocator allocator)
-
-