All Packages Class Hierarchy This Package Previous Next Index
Class semper.crypto.CryptoSeed
java.lang.Object
|
+----semper.crypto.CryptoSeed
- public class CryptoSeed
- extends Object
- implements Serializable
CryptoSeed is a serializable class used to contain seeds that will be stored in
the archive. The actual operations of storing the seed and retrieving it
are currently not done by this class, but must be done by calling the archive
manager with the object as argument.
Later, this class may provide an interface to the archive.
- Version:
- $Revision: 1.6 $ $Date: 1997/06/26 16:20:02 $
- Author:
- Torben Pryds Pedersen ([email protected])
- See Also:
- CryptoMan
-
CryptoSeed()
- Creates a new, empty CryptoSeed object
-
CryptoSeed(byte[])
- Creates a new CryptoSeed object with given seed
-
getSeed()
- Gets the seed contained in the object
CryptoSeed
public CryptoSeed()
- Creates a new, empty CryptoSeed object
CryptoSeed
public CryptoSeed(byte newSeed[])
- Creates a new CryptoSeed object with given seed
- Parameters:
- newSeed - is the new seed
getSeed
public byte[] getSeed()
- Gets the seed contained in the object
- Returns:
- the seed stored in the object (null if there is no seed)
All Packages Class Hierarchy This Package Previous Next Index