< prev index next >

test/jdk/sun/security/rsa/pss/SignatureTest2.java

Print this page
*** 29,11 ***
  import static javax.crypto.Cipher.PRIVATE_KEY;
  import static javax.crypto.Cipher.PUBLIC_KEY;
  
  /**
   * @test
!  * @bug 8146293 8238448
   * @summary Create a signature for RSASSA-PSS and get its signed data.
   *          re-initiate the signature with the public key. The signature
   *          can be verified by acquired signed data.
   * @run main SignatureTest2 768
   * @run main SignatureTest2 1024
--- 29,11 ---
  import static javax.crypto.Cipher.PRIVATE_KEY;
  import static javax.crypto.Cipher.PUBLIC_KEY;
  
  /**
   * @test
!  * @bug 8146293 8238448 8172366
   * @summary Create a signature for RSASSA-PSS and get its signed data.
   *          re-initiate the signature with the public key. The signature
   *          can be verified by acquired signed data.
   * @run main SignatureTest2 768
   * @run main SignatureTest2 1024

*** 66,11 ***
      /**
       * Digest algorithms to test w/ RSASSA-PSS signature algorithms
       */
      private static final String[] DIGEST_ALG = {
          "SHA-1", "SHA-224", "SHA-256", "SHA-384",
!         "SHA-512", "SHA-512/224", "SHA-512/256"
      };
  
      private static final String SIG_ALG = "RSASSA-PSS";
  
      private static PSSParameterSpec genPSSParameter(String digestAlgo,
--- 66,12 ---
      /**
       * Digest algorithms to test w/ RSASSA-PSS signature algorithms
       */
      private static final String[] DIGEST_ALG = {
          "SHA-1", "SHA-224", "SHA-256", "SHA-384",
!         "SHA-512", "SHA-512/224", "SHA-512/256",
+         "SHA3-224", "SHA3-256", "SHA3-384", "SHA3-512"
      };
  
      private static final String SIG_ALG = "RSASSA-PSS";
  
      private static PSSParameterSpec genPSSParameter(String digestAlgo,
< prev index next >