Skip to content

Commit 6f4c270

Browse files
committedJun 21, 2022
8285696: AlgorithmConstraints:permits not throwing IllegalArgumentException when 'alg' is null
Backport-of: 47951655acacba515c0d69f5192257664f887dba
1 parent 4b25717 commit 6f4c270

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 Jun 21, 2022

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