Is this piece of code safe?
SecureRandom randomizer = new SecureRandom(String.valueOf(new Date().getTime()).getBytes());
Is this the right
The code is reasonably safe because it doesn't just use the seed given to seed the randomizer.
Its not much more random than just using.
SecureRandom randomizer = new SecureRandom();