-
Bug
-
Resolution: Fixed
-
P3
-
9
-
b148
-
Verified
JceSecurity.java
- Path cpPath = Paths.get(cryptoPolicyProperty);
if ((cryptoPolicyProperty == null) ||
(cpPath.getNameCount() != 1) ||
(cpPath.compareTo(cpPath.getFileName()) != 0)) {
throw new SecurityException(
"Invalid policy directory name format: " +
cryptoPolicyProperty);
}
+ Path cpPath = Paths.get(cryptoPolicyProperty);
- Path cpPath = Paths.get(cryptoPolicyProperty);
if ((cryptoPolicyProperty == null) ||
(cpPath.getNameCount() != 1) ||
(cpPath.compareTo(cpPath.getFileName()) != 0)) {
throw new SecurityException(
"Invalid policy directory name format: " +
cryptoPolicyProperty);
}
+ Path cpPath = Paths.get(cryptoPolicyProperty);
- relates to
-
JDK-8170157 Enable unlimited cryptographic policy by default in Oracle JDK builds
- Resolved