public class Bytes
extends java.lang.Object
| Constructor and Description |
|---|
Bytes() |
| Modifier and Type | Method and 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 |
xorTee(int len,
byte[] x,
int xOff,
byte[] z0,
int z0Off,
byte[] z1,
int z1Off)
Xor x with z0 and save result into both Z0 and Z1
z0 = z1 = X xor Z0
|
static void |
xorTo(int len,
byte[] x,
byte[] z) |
static void |
xorTo(int len,
byte[] x,
int xOff,
byte[] z,
int zOff) |
public static final int BYTES
public static final int SIZE
public static void xor(int len,
byte[] x,
byte[] y,
byte[] z)
public static void xor(int len,
byte[] x,
int xOff,
byte[] y,
int yOff,
byte[] z,
int zOff)
public static void xorTee(int len,
byte[] x,
int xOff,
byte[] z0,
int z0Off,
byte[] z1,
int z1Off)
len - lengthx - xOff - z0 - z0Off - z1 - z1Off - public static void xorTo(int len,
byte[] x,
byte[] z)
public static void xorTo(int len,
byte[] x,
int xOff,
byte[] z,
int zOff)