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

(spec) javax.crypto.Mac: NPE should be specified

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Duplicate
    • Icon: P4 P4
    • None
    • 5.0
    • security-libs
    • generic, sparc
    • generic, solaris_2.6

      getInstance methods of Mac class throw NullPointerException if algorithm parameter is null. This behavior is not specified either in the method or in the package/class description. Here is an example:
      -------------------------------------------------------
      import javax.crypto.Mac;
      import java.security.NoSuchAlgorithmException;
      import java.security.NoSuchProviderException;
      import java.security.Provider;

      public class A {
          public static void main(String[] args) {
              try {
                  Mac.getInstance(null);
              } catch (NoSuchAlgorithmException e) {
                  System.out.println("NoSuchAlgorithmException was thrown");
              } catch (NullPointerException e) {
                  System.out.println("NPE was thrown");
              }
              try {
                  Mac.getInstance(null, "SunJCE");
              } catch (NoSuchAlgorithmException e) {
                  System.out.println("NoSuchAlgorithmException was thrown");
              } catch (NullPointerException e) {
                  System.out.println("NPE was thrown");
              } catch (NoSuchProviderException e) {
                  System.out.println("NoSuchProviderException was thrown");
              }
              try {
                  Mac.getInstance(null, new Provider("A", 0.1, "C") {});
              } catch (NoSuchAlgorithmException e) {
                  System.out.println("NoSuchAlgorithmException was thrown");
              } catch (NullPointerException e) {
                  System.out.println("NPE was thrown");
              }
          }
      }
      -----------------------------------------------
      aag@gaff:~/work/bugs/doc> javac A.java;java A
      NPE was thrown
      NPE was thrown
      NPE was thrown
      -----------------------------------------------


      ###@###.### 2004-12-07 15:05:20 GMT

            kdriver Kevin Driver
            agavrilosunw Alexey Gavrilov (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: