May 2001
Intermediate to advanced
618 pages
20h 50m
English
Class java.security.SecureRandomSpi
This is the service provider interface for the secure random number generator. Instances of this engine can be registered with a security provider and used to generate the random numbers required by the security algorithms.
public abstract class java.security.SecureRandomSpi
extends java.lang.Object
implements java.io.Serializable {
// Constructors
public SecureRandomSpi( );
// Protected Instance Methods
protected abstract byte[] engineGenerateSeed(int);
protected abstract void engineNextBytes(byte[]);
protected abstract void engineSetSeed(byte[]);
}Read now
Unlock full access