Name

Class java.security.SecureRandomSpi

Synopsis

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.

Class Definition

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[]);
}

Get Java Security, 2nd Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.