You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using the default SecureRandom implementation and I'm seeding it using its instance Seed method. Is this secure? As in, will my seed be applied also for future instances of the type? My reasons for asking is because the Seed method is an instance method, while I would expect something modifying the state of the type as a whole being static ...?
Can I expect my seed on an instance of SecureRandom to also seed future instances I create ...?
The text was updated successfully, but these errors were encountered:
I'm using the default
SecureRandom
implementation and I'm seeding it using its instanceSeed
method. Is this secure? As in, will my seed be applied also for future instances of the type? My reasons for asking is because theSeed
method is an instance method, while I would expect something modifying the state of the type as a whole being static ...?Can I expect my seed on an instance of
SecureRandom
to also seed future instances I create ...?The text was updated successfully, but these errors were encountered: