|
1 | 1 | /*
|
2 |
| - * Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved. |
| 2 | + * Copyright (c) 2018, 2021, Oracle and/or its affiliates. All rights reserved. |
3 | 3 | * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
4 | 4 | *
|
5 | 5 | * This code is free software; you can redistribute it and/or modify it
|
@@ -70,5 +70,32 @@ private static void removeFromDisabledAlgs(String prop, List<String> algs) {
|
70 | 70 | Security.setProperty(prop, value);
|
71 | 71 | }
|
72 | 72 |
|
| 73 | + /** |
| 74 | + * Removes the specified algorithms from the |
| 75 | + * jdk.xml.dsig.secureValidationPolicy security property. Matches any |
| 76 | + * part of the algorithm URI. |
| 77 | + */ |
| 78 | + public static void removeAlgsFromDSigPolicy(String... algs) { |
| 79 | + removeFromDSigPolicy("disallowAlg", List.<String>of(algs)); |
| 80 | + } |
| 81 | + |
| 82 | + private static void removeFromDSigPolicy(String rule, List<String> algs) { |
| 83 | + String value = Security.getProperty("jdk.xml.dsig.secureValidationPolicy"); |
| 84 | + value = Arrays.stream(value.split(",")) |
| 85 | + .filter(v -> !v.contains(rule) || |
| 86 | + !anyMatch(v, algs)) |
| 87 | + .collect(Collectors.joining(",")); |
| 88 | + Security.setProperty("jdk.xml.dsig.secureValidationPolicy", value); |
| 89 | + } |
| 90 | + |
| 91 | + private static boolean anyMatch(String value, List<String> algs) { |
| 92 | + for (String alg : algs) { |
| 93 | + if (value.contains(alg)) { |
| 94 | + return true; |
| 95 | + } |
| 96 | + } |
| 97 | + return false; |
| 98 | + } |
| 99 | + |
73 | 100 | private SecurityUtils() {}
|
74 | 101 | }
|
0 commit comments