Java Doc for SecureRandom.java in  » 6.0-JDK-Core » security » java » security » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Home
Java Source Code / Java Documentation
1.6.0 JDK Core
2.6.0 JDK Modules
3.6.0 JDK Modules com.sun
4.6.0 JDK Modules com.sun.java
5.6.0 JDK Modules sun
6.6.0 JDK Platform
7.Ajax
8.Apache Harmony Java SE
9.Aspect oriented
10.Authentication Authorization
11.Blogger System
12.Build
13.Byte Code
14.Cache
15.Chart
16.Chat
17.Code Analyzer
18.Collaboration
19.Content Management System
20.Database Client
21.Database DBMS
22.Database JDBC Connection Pool
23.Database ORM
24.Development
25.EJB Server
26.ERP CRM Financial
27.ESB
28.Forum
29.Game
30.GIS
31.Graphic 3D
32.Graphic Library
33.Groupware
34.HTML Parser
35.IDE
36.IDE Eclipse
37.IDE Netbeans
38.Installer
39.Internationalization Localization
40.Inversion of Control
41.Issue Tracking
42.J2EE
43.J2ME
44.JBoss
45.JMS
46.JMX
47.Library
48.Mail Clients
49.Music
50.Net
51.Parser
52.PDF
53.Portal
54.Profiler
55.Project Management
56.Report
57.RSS RDF
58.Rule Engine
59.Science
60.Scripting
61.Search Engine
62.Security
63.Sevlet Container
64.Source Control
65.Swing Library
66.Template Engine
67.Test Coverage
68.Testing
69.UML
70.Web Crawler
71.Web Framework
72.Web Mail
73.Web Server
74.Web Services
75.Web Services apache cxf 2.2.6
76.Web Services AXIS2
77.Wiki Engine
78.Workflow Engines
79.XML
80.XML UI
Java Source Code / Java Documentation » 6.0 JDK Core » security » java.security 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   java.util.Random
      java.security.SecureRandom

SecureRandom
public class SecureRandom extends java.util.Random (Code)
This class provides a cryptographically strong random number generator (RNG).

A cryptographically strong random number minimally complies with the statistical random number generator tests specified in FIPS 140-2, Security Requirements for Cryptographic Modules, section 4.9.1. Additionally, SecureRandom must produce non-deterministic output. Therefore any seed material passed to a SecureRandom object must be unpredictable, and all SecureRandom output sequences must be cryptographically strong, as described in RFC 1750: Randomness Recommendations for Security.

A caller obtains a SecureRandom instance via the no-argument constructor or one of the getInstance methods:

 SecureRandom random = new SecureRandom();
 

Many SecureRandom implementations are in the form of a pseudo-random number generator (PRNG), which means they use a deterministic algorithm to produce a pseudo-random sequence from a true random seed. Other implementations may produce true random numbers, and yet others may use a combination of both techniques.

Typical callers of SecureRandom invoke the following methods to retrieve random bytes:

 SecureRandom random = new SecureRandom();
 byte bytes[] = new byte[20];
 random.nextBytes(bytes);
 

Callers may also invoke the generateSeed method to generate a given number of seed bytes (to seed other random number generators, for example):

 byte seed[] = random.generateSeed(20);
 

See Also:   java.security.SecureRandomSpi
See Also:   java.util.Random
version:
   1.62, 07/12/07
author:
   Benjamin Renaud
author:
   Josh Bloch


Field Summary
final static  longserialVersionUID
    

Constructor Summary
public  SecureRandom()
     Constructs a secure random number generator (RNG) implementing the default random number algorithm.

This constructor traverses the list of registered security Providers, starting with the most preferred Provider. A new SecureRandom object encapsulating the SecureRandomSpi implementation from the first Provider that supports a SecureRandom (RNG) algorithm is returned. If none of the Providers support a RNG algorithm, then an implementation-specific default is returned.

Note that the list of registered providers may be retrieved via the Security.getProviders Security.getProviders() method.

See Appendix A in the Java Cryptography Architecture API Specification & Reference for information about standard RNG algorithm names.

The returned SecureRandom object has not been seeded.

public  SecureRandom(byte seed)
     Constructs a secure random number generator (RNG) implementing the default random number algorithm.
protected  SecureRandom(SecureRandomSpi secureRandomSpi, Provider provider)
     Creates a SecureRandom object.

Method Summary
public  byte[]generateSeed(int numBytes)
     Returns the given number of seed bytes, computed using the seed generation algorithm that this class uses to seed itself.
public  StringgetAlgorithm()
     Returns the name of the algorithm implemented by this SecureRandom object.
public static  SecureRandomgetInstance(String algorithm)
     Returns a SecureRandom object that implements the specified Random Number Generator (RNG) algorithm.
public static  SecureRandomgetInstance(String algorithm, String provider)
     Returns a SecureRandom object that implements the specified Random Number Generator (RNG) algorithm.
public static  SecureRandomgetInstance(String algorithm, Provider provider)
     Returns a SecureRandom object that implements the specified Random Number Generator (RNG) algorithm.
final public  ProvidergetProvider()
     Returns the provider of this SecureRandom object.
 SecureRandomSpigetSecureRandomSpi()
     Returns the SecureRandomSpi of this SecureRandom object.
public static  byte[]getSeed(int numBytes)
     Returns the given number of seed bytes, computed using the seed generation algorithm that this class uses to seed itself.
final protected  intnext(int numBits)
     Generates an integer containing the user-specified number of pseudo-random bits (right justified, with leading zeros).
public synchronized  voidnextBytes(byte[] bytes)
     Generates a user-specified number of random bytes.

If a call to setSeed had not occurred previously, the first call to this method forces this SecureRandom object to seed itself.

public synchronized  voidsetSeed(byte[] seed)
     Reseeds this random object.
public  voidsetSeed(long seed)
     Reseeds this random object, using the eight bytes contained in the given long seed.

Field Detail
serialVersionUID
final static long serialVersionUID(Code)




Constructor Detail
SecureRandom
public SecureRandom()(Code)
Constructs a secure random number generator (RNG) implementing the default random number algorithm.

This constructor traverses the list of registered security Providers, starting with the most preferred Provider. A new SecureRandom object encapsulating the SecureRandomSpi implementation from the first Provider that supports a SecureRandom (RNG) algorithm is returned. If none of the Providers support a RNG algorithm, then an implementation-specific default is returned.

Note that the list of registered providers may be retrieved via the Security.getProviders Security.getProviders() method.

See Appendix A in the Java Cryptography Architecture API Specification & Reference for information about standard RNG algorithm names.

The returned SecureRandom object has not been seeded. To seed the returned object, call the setSeed method. If setSeed is not called, the first call to nextBytes will force the SecureRandom object to seed itself. This self-seeding will not occur if setSeed was previously called.




SecureRandom
public SecureRandom(byte seed)(Code)
Constructs a secure random number generator (RNG) implementing the default random number algorithm. The SecureRandom instance is seeded with the specified seed bytes.

This constructor traverses the list of registered security Providers, starting with the most preferred Provider. A new SecureRandom object encapsulating the SecureRandomSpi implementation from the first Provider that supports a SecureRandom (RNG) algorithm is returned. If none of the Providers support a RNG algorithm, then an implementation-specific default is returned.

Note that the list of registered providers may be retrieved via the Security.getProviders Security.getProviders() method.

See Appendix A in the Java Cryptography Architecture API Specification & Reference for information about standard RNG algorithm names.
Parameters:
  seed - the seed.




SecureRandom
protected SecureRandom(SecureRandomSpi secureRandomSpi, Provider provider)(Code)
Creates a SecureRandom object.
Parameters:
  secureRandomSpi - the SecureRandom implementation.
Parameters:
  provider - the provider.




Method Detail
generateSeed
public byte[] generateSeed(int numBytes)(Code)
Returns the given number of seed bytes, computed using the seed generation algorithm that this class uses to seed itself. This call may be used to seed other random number generators.
Parameters:
  numBytes - the number of seed bytes to generate. the seed bytes.



getAlgorithm
public String getAlgorithm()(Code)
Returns the name of the algorithm implemented by this SecureRandom object. the name of the algorithm or unknownif the algorithm name cannot be determined.
since:
   1.5



getInstance
public static SecureRandom getInstance(String algorithm) throws NoSuchAlgorithmException(Code)
Returns a SecureRandom object that implements the specified Random Number Generator (RNG) algorithm.

This method traverses the list of registered security Providers, starting with the most preferred Provider. A new SecureRandom object encapsulating the SecureRandomSpi implementation from the first Provider that supports the specified algorithm is returned.

Note that the list of registered providers may be retrieved via the Security.getProviders Security.getProviders() method.

The returned SecureRandom object has not been seeded. To seed the returned object, call the setSeed method. If setSeed is not called, the first call to nextBytes will force the SecureRandom object to seed itself. This self-seeding will not occur if setSeed was previously called.
Parameters:
  algorithm - the name of the RNG algorithm.See Appendix A in the Java Cryptography Architecture API Specification & Reference for information about standard RNG algorithm names. the new SecureRandom object.
exception:
  NoSuchAlgorithmException - if no Provider supports aSecureRandomSpi implementation for thespecified algorithm.
See Also:   Provider
since:
   1.2




getInstance
public static SecureRandom getInstance(String algorithm, String provider) throws NoSuchAlgorithmException, NoSuchProviderException(Code)
Returns a SecureRandom object that implements the specified Random Number Generator (RNG) algorithm.

A new SecureRandom object encapsulating the SecureRandomSpi implementation from the specified provider is returned. The specified provider must be registered in the security provider list.

Note that the list of registered providers may be retrieved via the Security.getProviders Security.getProviders() method.

The returned SecureRandom object has not been seeded. To seed the returned object, call the setSeed method. If setSeed is not called, the first call to nextBytes will force the SecureRandom object to seed itself. This self-seeding will not occur if setSeed was previously called.
Parameters:
  algorithm - the name of the RNG algorithm.See Appendix A in the Java Cryptography Architecture API Specification & Reference for information about standard RNG algorithm names.
Parameters:
  provider - the name of the provider. the new SecureRandom object.
exception:
  NoSuchAlgorithmException - if a SecureRandomSpiimplementation for the specified algorithm is notavailable from the specified provider.
exception:
  NoSuchProviderException - if the specified provider is notregistered in the security provider list.
exception:
  IllegalArgumentException - if the provider name is nullor empty.
See Also:   Provider
since:
   1.2




getInstance
public static SecureRandom getInstance(String algorithm, Provider provider) throws NoSuchAlgorithmException(Code)
Returns a SecureRandom object that implements the specified Random Number Generator (RNG) algorithm.

A new SecureRandom object encapsulating the SecureRandomSpi implementation from the specified Provider object is returned. Note that the specified Provider object does not have to be registered in the provider list.

The returned SecureRandom object has not been seeded. To seed the returned object, call the setSeed method. If setSeed is not called, the first call to nextBytes will force the SecureRandom object to seed itself. This self-seeding will not occur if setSeed was previously called.
Parameters:
  algorithm - the name of the RNG algorithm.See Appendix A in the Java Cryptography Architecture API Specification & Reference for information about standard RNG algorithm names.
Parameters:
  provider - the provider. the new SecureRandom object.
exception:
  NoSuchAlgorithmException - if a SecureRandomSpiimplementation for the specified algorithm is not availablefrom the specified Provider object.
exception:
  IllegalArgumentException - if the specified provider is null.
See Also:   Provider
since:
   1.4




getProvider
final public Provider getProvider()(Code)
Returns the provider of this SecureRandom object. the provider of this SecureRandom object.



getSecureRandomSpi
SecureRandomSpi getSecureRandomSpi()(Code)
Returns the SecureRandomSpi of this SecureRandom object.



getSeed
public static byte[] getSeed(int numBytes)(Code)
Returns the given number of seed bytes, computed using the seed generation algorithm that this class uses to seed itself. This call may be used to seed other random number generators.

This method is only included for backwards compatibility. The caller is encouraged to use one of the alternative getInstance methods to obtain a SecureRandom object, and then call the generateSeed method to obtain seed bytes from that object.
Parameters:
  numBytes - the number of seed bytes to generate. the seed bytes.
See Also:   SecureRandom.setSeed




next
final protected int next(int numBits)(Code)
Generates an integer containing the user-specified number of pseudo-random bits (right justified, with leading zeros). This method overrides a java.util.Random method, and serves to provide a source of random bits to all of the methods inherited from that class (for example, nextInt, nextLong, and nextFloat).
Parameters:
  numBits - number of pseudo-random bits to be generated, where0 <= numBits <= 32. an int containing the user-specified numberof pseudo-random bits (right justified, with leading zeros).



nextBytes
public synchronized void nextBytes(byte[] bytes)(Code)
Generates a user-specified number of random bytes.

If a call to setSeed had not occurred previously, the first call to this method forces this SecureRandom object to seed itself. This self-seeding will not occur if setSeed was previously called.
Parameters:
  bytes - the array to be filled in with random bytes.




setSeed
public synchronized void setSeed(byte[] seed)(Code)
Reseeds this random object. The given seed supplements, rather than replaces, the existing seed. Thus, repeated calls are guaranteed never to reduce randomness.
Parameters:
  seed - the seed.
See Also:   SecureRandom.getSeed



setSeed
public void setSeed(long seed)(Code)
Reseeds this random object, using the eight bytes contained in the given long seed. The given seed supplements, rather than replaces, the existing seed. Thus, repeated calls are guaranteed never to reduce randomness.

This method is defined for compatibility with java.util.Random.
Parameters:
  seed - the seed.
See Also:   SecureRandom.getSeed




Methods inherited from java.util.Random
protected int next(int bits)(Code)(Java Doc)
public boolean nextBoolean()(Code)(Java Doc)
public void nextBytes(byte[] bytes)(Code)(Java Doc)
public double nextDouble()(Code)(Java Doc)
public float nextFloat()(Code)(Java Doc)
public synchronized double nextGaussian()(Code)(Java Doc)
public int nextInt()(Code)(Java Doc)
public int nextInt(int n)(Code)(Java Doc)
public long nextLong()(Code)(Java Doc)
public synchronized void setSeed(long seed)(Code)(Java Doc)

Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.