|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectnet.schmizz.sshj.common.ByteArrayUtils
public class ByteArrayUtils
Utility functions for byte arrays.
| Constructor Summary | |
|---|---|
ByteArrayUtils()
|
|
| Method Summary | |
|---|---|
static byte[] |
copyOf(byte[] array)
|
static boolean |
equals(byte[] a1,
byte[] a2)
Check whether two byte arrays are the equal. |
static boolean |
equals(byte[] a1,
int a1Offset,
byte[] a2,
int a2Offset,
int length)
Check whether some part or whole of two byte arrays is equal, for length bytes starting at some
offset. |
static String |
printHex(byte[] array)
Get a hexadecimal representation of array, with each octet separated by a space. |
static String |
printHex(byte[] array,
int offset,
int len)
Get a hexadecimal representation of a byte array starting at offset index for len
bytes, with each octet separated by a space. |
static String |
toHex(byte[] array)
Get the hexadecimal representation of a byte array. |
static String |
toHex(byte[] array,
int offset,
int len)
Get the hexadecimal representation of a byte array starting at offset index for len
bytes. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public ByteArrayUtils()
| Method Detail |
|---|
public static boolean equals(byte[] a1,
byte[] a2)
a1 - a2 -
true or false
public static boolean equals(byte[] a1,
int a1Offset,
byte[] a2,
int a2Offset,
int length)
length bytes starting at some
offset.
a1 - a1Offset - a2 - a2Offset - length -
true or falsepublic static String printHex(byte[] array)
array, with each octet separated by a space.
array -
public static String printHex(byte[] array,
int offset,
int len)
offset index for len
bytes, with each octet separated by a space.
array - offset - len -
public static String toHex(byte[] array)
array -
public static String toHex(byte[] array,
int offset,
int len)
offset index for len
bytes.
array - offset - len -
public static byte[] copyOf(byte[] array)
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||