Enable unlimited strength crypto via system Security property

This commit is contained in:
infra 2021-04-27 18:58:22 -04:00
parent bda9528392
commit 3035f35f9f

View file

@ -35,6 +35,8 @@ import java.security.Security;
public class Main {
public static void main(String[] args) {
// enable unlimited strength crypto via Policy, supported on relevant JREs
Security.setProperty("crypto.policy", "unlimited");
installSecurityProviderWorkaround();
// Configuring the logger needs to happen before any logger is initialized