cc.otavia.handler.codec.base64
package cc.otavia.handler.codec.base64
Members list
Type members
Classlikes
object Base64
Utility class for Buffer that encodes and decodes to and from Base64 notation.
Utility class for Buffer that 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.
Attributes
- Supertypes
-
class Objecttrait Matchableclass Any
- Self type
-
Base64.type
class Base64Decoder(dialect: Base64Dialect) extends ByteToByteDecoder
Attributes
- Supertypes
-
class ByteToByteDecodertrait Byte2ByteDecoderclass ChannelHandlerAdaptertrait ChannelHandlerclass Objecttrait Matchableclass AnyShow all
enum Base64Dialect(val alphabet: Array[Byte], val decodabet: Array[Byte], val breakLinesByDefault: Boolean)
Enumeration of supported Base64 dialects.
Enumeration of supported Base64 dialects.
The internal lookup tables in this class has been derived from Robert Harder's Public Domain Base64 Encoder/Decoder.
Attributes
- Supertypes
-
trait Enumtrait Serializabletrait Producttrait Equalsclass Objecttrait Matchableclass AnyShow all
class Base64Encoder(breakLines: Boolean, dialect: Base64Dialect) extends ByteToByteEncoder
Attributes
- Supertypes
-
class ByteToByteEncodertrait Byte2ByteEncoderclass ChannelHandlerAdaptertrait ChannelHandlerclass Objecttrait Matchableclass AnyShow all
In this article