- Base64 - Class in org.apache.kerby.util
-
Provides Base64 encoding and decoding as defined by RFC 2045.
- Base64() - Constructor for class org.apache.kerby.util.Base64
-
Creates a Base64 codec used for decoding (all modes) and encoding in URL-unsafe mode.
- Base64(boolean) - Constructor for class org.apache.kerby.util.Base64
-
Creates a Base64 codec used for decoding (all modes) and encoding in the given URL-safe mode.
- Base64(int) - Constructor for class org.apache.kerby.util.Base64
-
Creates a Base64 codec used for decoding (all modes) and encoding in URL-unsafe mode.
- Base64(int, byte[]) - Constructor for class org.apache.kerby.util.Base64
-
Creates a Base64 codec used for decoding (all modes) and encoding in URL-unsafe mode.
- Base64(int, byte[], boolean) - Constructor for class org.apache.kerby.util.Base64
-
Creates a Base64 codec used for decoding (all modes) and encoding in URL-unsafe mode.
- Base64InputStream - Class in org.apache.kerby.util
-
Provides Base64 encoding and decoding in a streaming fashion (unlimited size).
- Base64InputStream(InputStream) - Constructor for class org.apache.kerby.util.Base64InputStream
-
Creates a Base64InputStream such that all data read is Base64-decoded from the original provided InputStream.
- Base64InputStream(InputStream, boolean) - Constructor for class org.apache.kerby.util.Base64InputStream
-
Creates a Base64InputStream such that all data read is either Base64-encoded or Base64-decoded from the original
provided InputStream.
- Base64InputStream(InputStream, boolean, int, byte[]) - Constructor for class org.apache.kerby.util.Base64InputStream
-
Creates a Base64InputStream such that all data read is either Base64-encoded or Base64-decoded from the original
provided InputStream.
- Base64OutputStream - Class in org.apache.kerby.util
-
Provides Base64 encoding and decoding in a streaming fashion (unlimited size).
- Base64OutputStream(OutputStream) - Constructor for class org.apache.kerby.util.Base64OutputStream
-
Creates a Base64OutputStream such that all data written is Base64-encoded to the original provided OutputStream.
- Base64OutputStream(OutputStream, boolean) - Constructor for class org.apache.kerby.util.Base64OutputStream
-
Creates a Base64OutputStream such that all data written is either Base64-encoded or Base64-decoded to the
original provided OutputStream.
- Base64OutputStream(OutputStream, boolean, int, byte[]) - Constructor for class org.apache.kerby.util.Base64OutputStream
-
Creates a Base64OutputStream such that all data written is either Base64-encoded or Base64-decoded to the
original provided OutputStream.
- ByteArrayReadLine - Class in org.apache.kerby.util
-
- ByteArrayReadLine(ByteArrayInputStream) - Constructor for class org.apache.kerby.util.ByteArrayReadLine
-
- bytesToHex(byte[]) - Static method in class org.apache.kerby.util.HexUtil
-
Convert bytes into format as:
02020080
- bytesToHexFriendly(byte[]) - Static method in class org.apache.kerby.util.HexUtil
-
Convert bytes into friendly format as:
0x02 02 00 80
- encode(Object) - Method in class org.apache.kerby.util.Base64
-
Encodes an Object using the base64 algorithm.
- encode(byte[]) - Method in class org.apache.kerby.util.Base64
-
Encodes a byte[] containing binary data, into a byte[] containing characters in the Base64 alphabet.
- encode(byte[]) - Static method in class org.apache.kerby.util.Hex
-
- encode(byte[], int, int) - Static method in class org.apache.kerby.util.Hex
-
- encodeBase64(byte[]) - Static method in class org.apache.kerby.util.Base64
-
Encodes binary data using the base64 algorithm but does not chunk the output.
- encodeBase64(byte[], boolean) - Static method in class org.apache.kerby.util.Base64
-
Encodes binary data using the base64 algorithm, optionally chunking the output into 76 character blocks.
- encodeBase64(byte[], boolean, boolean) - Static method in class org.apache.kerby.util.Base64
-
Encodes binary data using the base64 algorithm, optionally chunking the output into 76 character blocks.
- encodeBase64(byte[], boolean, boolean, int) - Static method in class org.apache.kerby.util.Base64
-
Encodes binary data using the base64 algorithm, optionally chunking the output into 76 character blocks.
- encodeBase64Chunked(byte[]) - Static method in class org.apache.kerby.util.Base64
-
Encodes binary data using the base64 algorithm and chunks the encoded output into 76 character blocks
- encodeBase64String(byte[]) - Static method in class org.apache.kerby.util.Base64
-
Encodes binary data using the base64 algorithm into 76 character blocks separated by CRLF.
- encodeBase64URLSafe(byte[]) - Static method in class org.apache.kerby.util.Base64
-
Encodes binary data using a URL-safe variation of the base64 algorithm but does not chunk the output.
- encodeBase64URLSafeString(byte[]) - Static method in class org.apache.kerby.util.Base64
-
Encodes binary data using a URL-safe variation of the base64 algorithm but does not chunk the output.
- encodeInteger(BigInteger) - Static method in class org.apache.kerby.util.Base64
-
Encodes to a byte64-encoded integer according to crypto standards such as W3C's XML-Signature
- encodeToString(byte[]) - Method in class org.apache.kerby.util.Base64
-
Encodes a byte[] containing binary data, into a String containing characters in the Base64 alphabet.
- equals(KeyStore, KeyStore) - Static method in class org.apache.kerby.util.Util
-
True if the Keystores have the same # of entries, have the same set of aliases, and all the certificate-chains
(of the certificate entries) match.