Package org.bouncycastle.util
Class Bytes
- java.lang.Object
-
- org.bouncycastle.util.Bytes
-
public class Bytes extends java.lang.Object
Utility methods and constants for bytes.
-
-
Constructor Summary
Constructors Constructor Description Bytes()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static void
xor(int len, byte[] x, byte[] y, byte[] z)
static void
xor(int len, byte[] x, int xOff, byte[] y, int yOff, byte[] z, int zOff)
static void
xorTo(int len, byte[] x, byte[] z)
static void
xorTo(int len, byte[] x, int xOff, byte[] z, int zOff)
-
-
-
Field Detail
-
BYTES
public static final int BYTES
- See Also:
- Constant Field Values
-
SIZE
public static final int SIZE
- See Also:
- Constant Field Values
-
-
Method Detail
-
xor
public static void xor(int len, byte[] x, byte[] y, byte[] z)
-
xor
public static void xor(int len, byte[] x, int xOff, byte[] y, int yOff, byte[] z, int zOff)
-
xorTo
public static void xorTo(int len, byte[] x, byte[] z)
-
xorTo
public static void xorTo(int len, byte[] x, int xOff, byte[] z, int zOff)
-
-