Remove raw initialization from jsf and wob2m to discourage it
This commit is contained in:
parent
71c0d508f7
commit
7b85c90140
@ -47,12 +47,4 @@ open class JSF32Random protected constructor(
|
||||
val b = nextInt().toLong() and 0xFFFFFFFFL
|
||||
return a.shl(32) or b
|
||||
}
|
||||
|
||||
companion object {
|
||||
@JvmStatic
|
||||
@Deprecated("JSF suffers from 'weak seed' weakness, using raw initialization is highly discouraged, unless serializing/deserializing")
|
||||
fun raw(s0: Int, s1: Int, s2: Int, s3: Int): JSF32Random {
|
||||
return JSF32Random(s0, s1, s2, s3, null)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -46,12 +46,4 @@ open class JSF64Random(
|
||||
s3 = e + s0
|
||||
return s3
|
||||
}
|
||||
|
||||
companion object {
|
||||
@JvmStatic
|
||||
@Deprecated("JSF suffers from 'weak seed' weakness, using raw initialization is highly discouraged, unless serializing/deserializing")
|
||||
fun raw(s0: Long, s1: Long, s2: Long, s3: Long): JSF64Random {
|
||||
return JSF64Random(s0, s1, s2, s3, null)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -50,12 +50,4 @@ open class WOB2MRandom protected constructor(
|
||||
seed0 = temp - --count
|
||||
return seed1
|
||||
}
|
||||
|
||||
companion object {
|
||||
@JvmStatic
|
||||
@Deprecated("Quality of manual seeding is unknown (and probably very, very bad!), so don't use this unless serializing/deserializing")
|
||||
fun raw(seed0: Long, seed1: Long, counter: Long): WOB2MRandom {
|
||||
return WOB2MRandom(seed0, seed1, counter, null)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user