All Downloads are FREE. Search and download functionalities are using the official Maven repository.

scorex.utils.Random.scala Maven / Gradle / Ivy

There is a newer version: 1.2.0-RC3
Show newest version
package scorex.utils

import java.security.SecureRandom

object Random {
  def randomBytes(howMany: Int = 32): Array[Byte] = {
    val r = new Array[Byte](howMany)
    new SecureRandom().nextBytes(r) //overrides r
    r
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy