| Interface | Description |
|---|---|
| BinaryToTextEncoding |
Interface for byte-to-text-encodings
|
| BinaryToTextEncoding.Decoder |
Interface for decoding encoded strings
|
| BinaryToTextEncoding.Encoder |
Interface for encoding bytes
|
| BytesTransformer |
Interface for transforming
Bytes |
| Class | Description |
|---|---|
| BinaryToTextEncoding.Base64Encoding | |
| BinaryToTextEncoding.BaseRadix | |
| BinaryToTextEncoding.Hex |
Hex or Base16
|
| Bytes |
Bytes is wrapper class for an byte-array that allows a lot of convenience operations on it:
Creation from various source: arrays, primitives, parsed or random
Encoding in many formats: hex, base64, etc.
Helper functions like: indexOf, count, entropy
Transformations like: append, reverse, xor, and, resize, ...
Conversation to other types: primitives, List, object array, ByteBuffer, BigInteger, ...
Making it mutable
|
| BytesTransformer.BitWiseOperatorTransformer |
Simple transformer for bitwise operations on
Bytes instances |
| BytesTransformer.ConcatTransformer |
Simple transformer for bitwise operations on
Bytes instances |
| BytesTransformer.NegateTransformer |
Simple transformer for bitwise unary negation on
Bytes instances |
| BytesTransformer.ReverseTransformer |
Reverses the internal byte array
|
| BytesTransformer.ShiftTransformer |
Simple transformer for bit shifting
Bytes instances |
| BytesTransformer.ShuffleTransformer |
Shuffles the internal byte array
|
| BytesTransformer.SortTransformer |
Sorts the internal byte array with given
Comparator |
| MutableBytes |
Mutable version of
Bytes. |
Copyright © 2017. All rights reserved.