VOOZH about

URL: https://www.geeksforgeeks.org/java/securerandom-generateseed-method-in-java-with-examples/

⇱ SecureRandom generateSeed() method in Java with Examples - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

SecureRandom generateSeed() method in Java with Examples

Last Updated : 6 Jun, 2021

The generateSeed() method of java.security.SecureRandom class is used to return 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.

Syntax:  

public byte[] generateSeed(int numBytes)

Parameters: This method takes the number of seed bytes to generate as parameter.

Return Value: This method returns the generated seed bytes.

Below are the examples to illustrate the generateSeed() method:

Note:  

  1. This program will not run on online IDE.
  2. Every time Secure Random class will generate random output.

Example 1:  

Output: 

[24, -16, -12, 25, -3, 66, -90, 103]


Example 2: 

Output: 

Trying to get the instance from an unknown source
Exception thrown : java.security.NoSuchAlgorithmException: TAJMAHAL SecureRandom not available


 

Comment