Skip to content

Commit 4795165

Browse files
committedApr 28, 2022
8285696: AlgorithmConstraints:permits not throwing IllegalArgumentException when 'alg' is null
Reviewed-by: jpai, xuelei
1 parent c1173c2 commit 4795165

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed
 

‎src/java.base/share/classes/sun/security/util/DisabledAlgorithmConstraints.java

+3
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,9 @@ public final boolean permits(Set<CryptoPrimitive> primitives,
160160
throw new IllegalArgumentException("The primitives cannot be null" +
161161
" or empty.");
162162
}
163+
if (algorithm == null || algorithm.isEmpty()) {
164+
throw new IllegalArgumentException("No algorithm name specified");
165+
}
163166

164167
if (!cachedCheckAlgorithm(algorithm)) {
165168
return false;

1 commit comments

Comments
 (1)

openjdk-notifier[bot] commented on Apr 28, 2022

@openjdk-notifier[bot]
Please sign in to comment.