See: Description
| Interface | Description |
|---|---|
| TextEncoder |
Interface for encoding/decoding bytes and text.
|
| Class | Description |
|---|---|
| AbstractBase32Encoder |
Abstract encoder for encoding/decoding bytes and text using the Base-32 format.
|
| AbstractBase32NonNumericEncoder |
Abstract encoder for encoding/decoding bytes and text using the Base-32 format without any numeric characters in the
encoded result.
|
| AbstractBase64Encoder |
Abstract encoder for encoding/decoding bytes and text using the Base-64 format.
|
| AbstractBase64UrlEncoder |
Abstract encoder for encoding/decoding bytes and text using the Base-64 format which is
safe to use in URL's.
|
| Base32Encoder |
Encoder for encoding/decoding bytes and text using the Base-32 format without padding.
|
| Base32NonNumericEncoder |
Encoder for encoding/decoding bytes and text using the Base-32 format without any numeric
characters or padding in the encoded result.
|
| Base32NonNumericPaddedEncoder |
Encoder for encoding/decoding bytes and text using the Base-32 format with padding but without
any numeric characters in the encoded result.
|
| Base32PaddedEncoder |
Encoder for encoding/decoding bytes and text using the Base-32 format with padding.
|
| Base64Encoder |
Encoder for encoding/decoding bytes and text using the Base-64 format without padding.
|
| Base64PaddedEncoder |
Encoder for encoding/decoding bytes and text using the Base-64 format with padding.
|
| Base64UrlEncoder |
Encoder for encoding/decoding bytes and text using the Base-64 format without padding which is
safe to use in URL's.
|
| Base64UrlPaddedEncoder |
Encoder for encoding/decoding bytes and text using the Base-64 format with padding which is safe
to use in URL's.
|
| HexEncoder |
Encoder for encoding/decoding bytes and text using the hexadecimal (Base-16) format.
|