summaryrefslogtreecommitdiff
path: root/src/compiler
diff options
context:
space:
mode:
authorGeoffrey Washburn <geoffrey.washburn@epfl.ch>2008-03-04 17:06:42 +0000
committerGeoffrey Washburn <geoffrey.washburn@epfl.ch>2008-03-04 17:06:42 +0000
commit5ab72025a789ea9ada209cb7656b913186bb209a (patch)
tree4c4782b163e04489a3bac990b346a130344044e2 /src/compiler
parent9aacd6ddc4804b18498b8d1bdc702ef8682e731d (diff)
downloadscala-5ab72025a789ea9ada209cb7656b913186bb209a.tar.gz
scala-5ab72025a789ea9ada209cb7656b913186bb209a.tar.bz2
scala-5ab72025a789ea9ada209cb7656b913186bb209a.zip
Use a java.security.SecureRandom for better
random port selection. Should think a little more about whether fsc can be exploited by other users local to a computer.
Diffstat (limited to 'src/compiler')
-rw-r--r--src/compiler/scala/tools/nsc/CompileSocket.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/scala/tools/nsc/CompileSocket.scala b/src/compiler/scala/tools/nsc/CompileSocket.scala
index 092c300ae5..bb01655709 100644
--- a/src/compiler/scala/tools/nsc/CompileSocket.scala
+++ b/src/compiler/scala/tools/nsc/CompileSocket.scala
@@ -180,7 +180,7 @@ class CompileSocket {
def setPort(port: Int) {
try {
val f = new PrintWriter(new FileOutputStream(portFile(port)))
- f.println(new java.util.Random().nextInt.toString)
+ f.println(new java.security.SecureRandom().nextInt.toString)
f.close()
} catch {
case ex: /*FileNotFound+Security*/Exception =>