Remove raw initialization from jsf and wob2m to discourage it

This commit is contained in:
DBotThePony 2025-03-09 11:48:18 +07:00
parent 71c0d508f7
commit 7b85c90140
Signed by: DBot
GPG Key ID: DCC23B5715498507
3 changed files with 0 additions and 24 deletions

View File

@ -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)
}
}
}

View File

@ -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)
}
}
}

View File

@ -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)
}
}
}