Consider that SecureRandom is really a facade around multiple providers that can plug in varying implementations. :)
Java Puzzle: Square Root
11–20 of 61 posts
Re: Java Puzzle: Square Root
#12Re: Java Puzzle: Square Root
#13Someone should just modify the StackSort algorithm that was posted yesterday (made up by xkcd) to search for Square Root functions instead and run them. http://gkoberger.github.com/stacksort/
Re: Java Puzzle: Square Root
#14Can someone explain what this is asking? I don't know java
Re: Java Puzzle: Square Root
#15Use reflection to read n. Reflection lets you bypass |private|.
Re: Java Puzzle: Square Root
#16Can someone explain what this is asking? I don't know java
There is a really big number you don't know. You should get the square root for it.
Re: Java Puzzle: Square Root
#17Earlier quoted context omitted.
There is a really big number you don't know. You should get the square root for it.
So why are people talking about vulnerabilities and 'timing attacks' then? and how are you supposed to get the square root of a number you dont know..
Re: Java Puzzle: Square Root
#18Earlier quoted context omitted.
There is a really big number you don't know. You should get the square root for it.
So why are people talking about vulnerabilities and 'timing attacks' then? and how are you supposed to get the square root of a number you dont know..
edit: Yeah… just ignore this and look at the other answers ;)
Re: Java Puzzle: Square Root
#19Earlier quoted context omitted.
There is a really big number you don't know. You should get the square root for it.
So why are people talking about vulnerabilities and 'timing attacks' then? and how are you supposed to get the square root of a number you dont know..
I suspect that doing something with the random seed is more what the author had in mind, though.
Re: Java Puzzle: Square Root
#20Consider that SecureRandom is really a facade around multiple providers that can plug in varying implementations. :)