Exemplo n.º 1
0
 /*
  * Generates and returns the specified number of seed bytes, computed using
  * the seed generation algorithm used by this {@code SecureRandom}.
  *
  * @param numBytes
  *            the number of seed bytes.
  * @return the seed bytes.
  */
 public byte[] generateSeed(int numBytes)
 {
     return(secureRandomSpi.engineGenerateSeed(numBytes));
 }