martin-g commented on code in PR #1357:
URL: https://github.com/apache/wicket/pull/1357#discussion_r2722916960
##########
wicket-core/src/main/java/org/apache/wicket/core/random/DefaultSecureRandomSupplier.java:
##########
@@ -42,7 +41,7 @@ public DefaultSecureRandomSupplier()
}
catch (NoSuchAlgorithmException e)
{
- throw new WicketRuntimeException(e);
+ random = new SecureRandom();
Review Comment:
Just to make my initial suggestion more clear:
You need to call `getSecuritySettings().setRandomSupplier(new
MyCustomSupplier())` in `YourApplication#init()` method.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]