![]() |
VOOZH | about |
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:
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