Switched PRNG to secure PRNG
This commit is contained in:
parent
643b0ecce8
commit
0528604839
@ -1,17 +1,19 @@
|
|||||||
package org.bigbluebutton.core.util
|
package org.bigbluebutton.core.util
|
||||||
|
|
||||||
|
import java.security.SecureRandom
|
||||||
|
|
||||||
object RandomStringGenerator {
|
object RandomStringGenerator {
|
||||||
// From: http://www.bindschaedler.com/2012/04/07/elegant-random-string-generation-in-scala/
|
// From: http://www.bindschaedler.com/2012/04/07/elegant-random-string-generation-in-scala/
|
||||||
|
|
||||||
// Random generator
|
// Random generator
|
||||||
val random = new scala.util.Random
|
val random = new SecureRandom()
|
||||||
|
|
||||||
// Generate a random string of length n from the given alphabet
|
// Generate a random string of length n from the given alphabet
|
||||||
def randomString(alphabet: String)(n: Int): String =
|
def randomString(alphabet: String)(n: Int): String =
|
||||||
Stream.continually(random.nextInt(alphabet.size)).map(alphabet).take(n).mkString
|
LazyList.continually(random.nextInt(alphabet.length)).map(alphabet).take(n).mkString
|
||||||
|
|
||||||
// Generate a random alphabnumeric string of length n
|
// Generate a random alphabnumeric string of length n
|
||||||
def randomAlphanumericString(n: Int) =
|
def randomAlphanumericString(n: Int): String =
|
||||||
randomString("abcdefghijklmnopqrstuvwxyz0123456789")(n)
|
randomString("abcdefghijklmnopqrstuvwxyz0123456789")(n)
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user