Exemplo n.º 1
0
 /*
  * Reseeds this {@code SecureRandom} instance with the specified {@code
  * seed}. The seed of this {@code SecureRandom} instance is supplemented,
  * not replaced.
  *
  * @param seed
  *            the new seed.
  */
 public virtual void setSeed(byte[] seed)
 {
     lock (this) {
         secureRandomSpi.engineSetSeed(seed);
     }
 }