-
Bug
-
Resolution: Fixed
-
P3
-
6u105, 7u111, 8u86, 9
-
b102
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-8149296 | 8u101 | Ivan Gerasimov | P3 | Resolved | Fixed | b01 |
JDK-8146892 | 8u92 | Ivan Gerasimov | P3 | Resolved | Fixed | b03 |
JDK-8146845 | 8u86 | Ivan Gerasimov | P3 | Closed | Duplicate | |
JDK-8155441 | emb-8u101 | Ivan Gerasimov | P3 | Resolved | Fixed | b01 |
JDK-8146846 | 7u111 | Ivan Gerasimov | P3 | Resolved | Fixed | b01 |
JDK-8147423 | 7u101 | Ivan Gerasimov | P3 | Resolved | Fixed | b04 |
JDK-8146847 | 6u115 | Ivan Gerasimov | P3 | Closed | Not an Issue |
-------------------
static Collection<SignatureAndHashAlgorithm>
getSupportedAlgorithms(AlgorithmConstraints constraints) {
Collection<SignatureAndHashAlgorithm> supported = new ArrayList<>();
synchronized (priorityMap) {
for (SignatureAndHashAlgorithm sigAlg : priorityMap.values()) {
if (sigAlg.priority <= SUPPORTED_ALG_PRIORITY_MAX_NUM &&
constraints.permits(SIGNATURE_PRIMITIVE_SET,
sigAlg.algorithm, null)) {
supported.add(sigAlg);
}
}
}
return supported;
}
-------------------
- backported by
-
JDK-8146846 Issues with SignatureAndHashAlgorithm.getSupportedAlgorithms
-
- Resolved
-
-
JDK-8146892 Issues with SignatureAndHashAlgorithm.getSupportedAlgorithms
-
- Resolved
-
-
JDK-8147423 Issues with SignatureAndHashAlgorithm.getSupportedAlgorithms
-
- Resolved
-
-
JDK-8149296 Issues with SignatureAndHashAlgorithm.getSupportedAlgorithms
-
- Resolved
-
-
JDK-8155441 Issues with SignatureAndHashAlgorithm.getSupportedAlgorithms
-
- Resolved
-
-
JDK-8146845 Issues with SignatureAndHashAlgorithm.getSupportedAlgorithms
-
- Closed
-
-
JDK-8146847 Issues with SignatureAndHashAlgorithm.getSupportedAlgorithms
-
- Closed
-
- relates to
-
JDK-8179275 Remove map synchronization from SignatureAndHashAlgorithm
-
- Closed
-