Package | Description |
---|---|
org.wildfly.security.util |
Package to hold utility classes of the Elytron project.
|
Modifier and Type | Field and Description |
---|---|
static ByteIterator |
ByteIterator.EMPTY
The empty byte iterator.
|
Modifier and Type | Method and Description |
---|---|
ByteIterator |
CodePointIterator.asLatin1()
Get a byte iterator over the latin-1 encoding of this code point iterator.
|
ByteIterator |
CodePointIterator.asUtf8()
Get a byte iterator over the UTF-8 encoding of this code point iterator.
|
ByteIterator |
CodePointIterator.asUtf8(boolean escapeNul)
Get a byte iterator over the UTF-8 encoding of this code point iterator.
|
ByteIterator |
ByteIterator.base32Decode()
Base32-decode the current stream, assuming that the byte data is encoded in an ASCII-derived encoding.
|
ByteIterator |
CodePointIterator.base32Decode()
Base32-decode the current stream.
|
ByteIterator |
ByteIterator.base32Decode(Alphabet.Base32Alphabet alphabet)
Base32-decode the current stream, assuming that the byte data is encoded in an ASCII-derived encoding.
|
ByteIterator |
CodePointIterator.base32Decode(Alphabet.Base32Alphabet alphabet)
Base32-decode the current stream.
|
ByteIterator |
ByteIterator.base32Decode(Alphabet.Base32Alphabet alphabet,
boolean requirePadding)
Base32-decode the current stream, assuming that the byte data is encoded in an ASCII-derived encoding.
|
ByteIterator |
CodePointIterator.base32Decode(Alphabet.Base32Alphabet alphabet,
boolean requirePadding)
Base32-decode the current stream.
|
ByteIterator |
ByteIterator.base64Decode()
Base64-decode the current stream, assuming that the byte data is encoded in an ASCII-derived encoding.
|
ByteIterator |
CodePointIterator.base64Decode()
Base64-decode the current stream.
|
ByteIterator |
ByteIterator.base64Decode(Alphabet.Base64Alphabet alphabet)
Base64-decode the current stream, assuming that the byte data is encoded in an ASCII-derived encoding.
|
ByteIterator |
CodePointIterator.base64Decode(Alphabet.Base64Alphabet alphabet)
Base64-decode the current stream.
|
ByteIterator |
ByteIterator.base64Decode(Alphabet.Base64Alphabet alphabet,
boolean requirePadding)
Base64-decode the current stream, assuming that the byte data is encoded in an ASCII-derived encoding.
|
ByteIterator |
CodePointIterator.base64Decode(Alphabet.Base64Alphabet alphabet,
boolean requirePadding)
Base64-decode the current stream.
|
ByteIterator |
ByteIterator.delimitedBy(int... delims)
Get a sub-iterator that is delimited by the given bytes.
|
ByteIterator |
ByteIterator.doFinal(Mac mac) |
ByteIterator |
ByteIterator.doFinal(MessageDigest digest) |
ByteIterator |
ByteIterator.hexDecode()
Hex-decode the current stream, assuming that the byte data is encoded in an ASCII-derived encoding.
|
ByteIterator |
CodePointIterator.hexDecode()
Hex-decode the current stream.
|
ByteIterator |
ByteIterator.interleavedWith(byte[] table)
Get a byte iterator which translates this byte iterator through an interleaving table.
|
ByteIterator |
ByteIterator.interleavedWith(int[] table)
Get a byte iterator which translates this byte iterator through an interleaving table.
|
ByteIterator |
ByteStringBuilder.iterate() |
ByteIterator |
ByteIterator.limitedTo(int size)
Return a copy of this iterator which is limited to the given number of bytes after the current one.
|
static ByteIterator |
ByteIterator.ofBytes(byte... bytes)
Get a byte iterator for a byte array.
|
static ByteIterator |
ByteIterator.ofBytes(byte[] bytes,
int[] interleave)
Get a byte iterator for a byte array with interleave.
|
static ByteIterator |
ByteIterator.ofBytes(byte[] bytes,
int offs,
int len)
Get a byte iterator for a byte array.
|
static ByteIterator |
ByteIterator.ofBytes(byte[] bytes,
int offs,
int len,
int[] interleave)
Get a byte iterator for a byte array with interleave.
|
ByteIterator |
ByteIterator.sign(Signature signature) |
Modifier and Type | Method and Description |
---|---|
ByteStringBuilder |
ByteStringBuilder.append(ByteIterator iterator) |
boolean |
ByteIterator.contentEquals(ByteIterator other)
Determine if the remaining contents of this iterator are identical to the remaining contents of the other iterator.
|
Copyright © 2016 JBoss by Red Hat. All rights reserved.