-
Bug
-
Resolution: Fixed
-
P3
-
5.0
-
b28
-
sparc
-
solaris_7
-
Verified
Name: mtR10145 Date: 10/22/2003
The spec should describe more precisely format of
returned string. For example, the current JDK's implementation returns
strings of arbitrary view (please see #4934981 for details):
============ Test6.java ====================
import javax.crypto.EncryptedPrivateKeyInfo;
import java.security.NoSuchAlgorithmException;
public class Test6 {
public static void main( String argv[] ) {
byte [] encryptedData = { 0 };
String [] algorithms = { "SHA-1", "DiffieHellman"};
for (int i = 0; i < algorithms.length; i++) {
try {
EncryptedPrivateKeyInfo epki = new EncryptedPrivateKeyInfo(algorithms[i], encryptedData);
if (!epki.getAlgName().equalsIgnoreCase(algorithms[i]))
System.out.println("Error: getAlgName returned " + epki.getAlgName() + " when " +
algorithms[i] + " expected");
} catch (NoSuchAlgorithmException nsae) { }
}
}
}
====== test output (tested with java 1.5.0-beta-b23) ==============
Error: getAlgName returned SHA when SHA-1 expected
Error: getAlgName returned Diffie-Hellman when DiffieHellman expected
===================================================================
The spec should define whethere behavior like this is correct or
getAlgName should return pre-defined data.
======================================================================
The spec should describe more precisely format of
returned string. For example, the current JDK's implementation returns
strings of arbitrary view (please see #4934981 for details):
============ Test6.java ====================
import javax.crypto.EncryptedPrivateKeyInfo;
import java.security.NoSuchAlgorithmException;
public class Test6 {
public static void main( String argv[] ) {
byte [] encryptedData = { 0 };
String [] algorithms = { "SHA-1", "DiffieHellman"};
for (int i = 0; i < algorithms.length; i++) {
try {
EncryptedPrivateKeyInfo epki = new EncryptedPrivateKeyInfo(algorithms[i], encryptedData);
if (!epki.getAlgName().equalsIgnoreCase(algorithms[i]))
System.out.println("Error: getAlgName returned " + epki.getAlgName() + " when " +
algorithms[i] + " expected");
} catch (NoSuchAlgorithmException nsae) { }
}
}
}
====== test output (tested with java 1.5.0-beta-b23) ==============
Error: getAlgName returned SHA when SHA-1 expected
Error: getAlgName returned Diffie-Hellman when DiffieHellman expected
===================================================================
The spec should define whethere behavior like this is correct or
getAlgName should return pre-defined data.
======================================================================
- relates to
-
JDK-4944783 Problems with algorithms in Cipher/AlgorithmParameters
-
- Closed
-
-
JDK-4934981 javax.crypto.EncryptedPrivateKeyInfo.getAlgName returns unexpected data
-
- Closed
-
-
JDK-4381928 Functional error in java.security.cert.X509Certificate.getSigAlgName
-
- Closed
-