We are using SecureRandom as follows (using Java8):
import java.security.SecureRandom;
private SecureRandom random = new SecureRandom();
The algorithm being used is NativePRNG.
Should we seed periodically?
as it's written that NativePRNG is continuously receives entropy from the operating system (by reading from /dev/(u)random)
What do you think?