-
Bug
-
Resolution: Fixed
-
P3
-
11, 12
-
b19
-
generic
-
generic
-
Verified
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-8213454 | 11.0.3-oracle | Sean Coffey | P3 | Resolved | Fixed | master |
JDK-8219236 | 11.0.3 | Valerie Peng | P3 | Resolved | Fixed | master |
JDK-8250833 | openjdk8u272 | Valerie Peng | P3 | Resolved | Fixed | b02 |
JDK-8249671 | 8u271 | Prasadarao Koppula | P3 | Resolved | Fixed | b02 |
JDK-8251764 | emb-8u271 | Valerie Peng | P3 | Resolved | Fixed | team |
The second parameter of method "initialize(int keySize, SecureRandom random)" in "sun.security.rsa.RSAKeyPairGenerator" is not used.
// initialize the generator. See JCA doc
public void initialize(int keySize, SecureRandom random) {
try {
initialize(new RSAKeyGenParameterSpec(keySize,
RSAKeyGenParameterSpec.F4), null);
} catch (InvalidAlgorithmParameterException iape) {
throw new InvalidParameterException(iape.getMessage());
}
}
It seems "null" is used, ignoring the passing in parameter.
I don't know if this is intended or not.
FREQUENCY : always
- backported by
-
JDK-8213454 Second parameter of "initialize" method is not used
-
- Resolved
-
-
JDK-8219236 Second parameter of "initialize" method is not used
-
- Resolved
-
-
JDK-8249671 Second parameter of "initialize" method is not used
-
- Resolved
-
-
JDK-8250833 Second parameter of "initialize" method is not used
-
- Resolved
-
-
JDK-8251764 Second parameter of "initialize" method is not used
-
- Resolved
-
- duplicates
-
JDK-8215250 KeyPairGenerator.initialize(int, SecureRandom) don't use the given source
-
- Closed
-
-
JDK-8221250 RSAKeyPairGenerator initialize drops SecureRandom parameter
-
- Closed
-
-
JDK-8248744 Second parameter of "initialize" method is not used
-
- Closed
-