Class cryptix.util.ByteArrayFactory
All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class cryptix.util.ByteArrayFactory

java.lang.Object
   |
   +----cryptix.util.ByteArrayFactory

public final class ByteArrayFactory
extends Object
static class that reads and write message byte arrays.

Method Index

 o fromHexString(String)
 o load(byte[])
 o load(byte[], int)
 o read(DataInput)
 o save(byte[])
 o toHexdumpString(byte[])
 o toHexdumpString(byte[], int, int)
 o toHexString(byte[])
 o toHexString(byte[], int, int)
 o write(DataOutput, byte[])
 o write(DataOutput, ByteArray)

Methods

 o load
  public final static byte[] load(byte buf[]) throws IOException
 o load
  public final static byte[] load(byte buf[],
                                  int offset) throws IOException
 o save
  public final static byte[] save(byte data[]) throws IOException
 o read
  public final static byte[] read(DataInput in) throws IOException
 o write
  public final static void write(DataOutput out,
                                 ByteArray data) throws IOException
 o write
  public final static void write(DataOutput out,
                                 byte data[]) throws IOException
 o toHexString
  public final static String toHexString(byte buf[])
 o toHexString
  public static String toHexString(byte buf[],
                                   int ptr,
                                   int len)
 o toHexdumpString
  public final static String toHexdumpString(byte buf[])
 o toHexdumpString
  public static String toHexdumpString(byte buf[],
                                       int ptr,
                                       int len)
 o fromHexString
  public final static byte[] fromHexString(String str)

All Packages  Class Hierarchy  This Package  Previous  Next  Index