Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-4941596

EncryptedPrivateKeyInfo.getAlgName: the spec is incomplete

XMLWordPrintable

    • 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.
      ======================================================================

            valeriep Valerie Peng
            cmssunw Cms Cms (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: