SecureRandom.getInstance(String algorithm) has the following syntax.
public static SecureRandom getInstance(String algorithm) throws NoSuchAlgorithmException
In the following code shows how to use SecureRandom.getInstance(String algorithm) method.
// w w w . j a v a 2s . co m import java.security.SecureRandom; import java.util.Arrays; public class Main { public static void main(String[] argv) throws Exception { SecureRandom sr = SecureRandom.getInstance("SHA1PRNG"); byte[] bytes = new byte[8]; sr.nextBytes(bytes); System.out.println(Arrays.toString(bytes)); } }
The code above generates the following result.