All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class cryptix.math.RandomStream

java.lang.Object
   |
   +----java.io.InputStream
           |
           +----cryptix.math.RandomStream

public abstract class RandomStream
extends InputStream
An abstract class whose subclasses generate potentially random bytes.

Copyright © 1995-1997 Systemics Ltd on behalf of the Cryptix Development Team.
All rights reserved.

$Revision: 1.1.1.1 $

Author:
unattributed

Constructor Index

 o RandomStream()

Method Index

 o nextByte()
 o read()
 o read(byte[])
 o read(byte[], int, int)
 o seed(byte[])
 o skip(long)

Constructors

 o RandomStream
 public RandomStream()

Methods

 o read
 public int read()
Overrides:
read in class InputStream
 o read
 public int read(byte b[])
Overrides:
read in class InputStream
 o read
 public int read(byte b[],
                 int off,
                 int len)
Overrides:
read in class InputStream
 o skip
 public long skip(long n)
Overrides:
skip in class InputStream
 o seed
 protected abstract void seed(byte seed[])
 o nextByte
 protected abstract byte nextByte()

All Packages  Class Hierarchy  This Package  Previous  Next  Index