Bouncy Castle Cryptography Library 1.77.0

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.


Field Summary
static int BYTES
           
static int SIZE
           
 
Constructor Summary
Bytes()
           
 
Method Summary
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)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

BYTES

public static final int BYTES

SIZE

public static final int SIZE
Constructor Detail

Bytes

public Bytes()
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)

Bouncy Castle Cryptography Library 1.77.0