Skip to content

Commit 6fe8d8d

Browse files
committedJun 29, 2022
8285696: AlgorithmConstraints:permits not throwing IllegalArgumentException when 'alg' is null
Backport-of: 47951655acacba515c0d69f5192257664f887dba
1 parent b4f0859 commit 6fe8d8d

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
@@ -156,6 +156,9 @@ public DisabledAlgorithmConstraints(String propertyName,
156156
@Override
157157
public final boolean permits(Set<CryptoPrimitive> primitives,
158158
String algorithm, AlgorithmParameters parameters) {
159+
if (algorithm == null || algorithm.isEmpty()) {
160+
throw new IllegalArgumentException("No algorithm name specified");
161+
}
159162
if (!cachedCheckAlgorithm(algorithm)) {
160163
return false;
161164
}

1 commit comments

Comments
 (1)

openjdk-notifier[bot] commented on Jun 29, 2022

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