java.util.Random same across platforms?

Maybe a dumb newbie question but its important for me. I am making the scrambling algorithm for the CD-Key in my game. Just wanted to verify that if I use java.util.Random and start it with a seed that it will be the same values across all platforms everywhere all the time? There will be some nice complaints if I release a game and it wasn’t the same.

Thanks!

From the JavaDoc - so yes, they will always generate the same sequence.

Kev