< prev index next >

test/jdk/sun/security/tools/keytool/fakegen/PSS.java

Print this page
rev 59107 : imported patch security


  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /*
  25  * @test
  26  * @bug 8215694 8222987 8225257
  27  * @summary keytool cannot generate RSASSA-PSS certificates
  28  * @library /test/lib
  29  * @build java.base/sun.security.rsa.RSAKeyPairGenerator
  30  * @modules java.base/sun.security.util
  31  *          java.base/sun.security.x509
  32  * @requires os.family != "solaris"
  33  * @run main PSS
  34  */
  35 
  36 // This test is excluded from Solaris because the 8192-bit RSA key pair
  37 // generator is extremely slow there. Please note the fake
  38 // KeyPairGenerator will not be used because of provider preferences.
  39 
  40 import jdk.test.lib.Asserts;
  41 import jdk.test.lib.SecurityTools;
  42 import jdk.test.lib.process.OutputAnalyzer;
  43 import jdk.test.lib.security.DerUtils;
  44 import sun.security.util.ObjectIdentifier;
  45 import sun.security.x509.AlgorithmId;
  46 
  47 import java.io.File;
  48 import java.security.KeyStore;
  49 import java.security.cert.X509Certificate;
  50 
  51 public class PSS {
  52 




  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /*
  25  * @test
  26  * @bug 8215694 8222987 8225257
  27  * @summary keytool cannot generate RSASSA-PSS certificates
  28  * @library /test/lib
  29  * @build java.base/sun.security.rsa.RSAKeyPairGenerator
  30  * @modules java.base/sun.security.util
  31  *          java.base/sun.security.x509

  32  * @run main PSS
  33  */
  34 
  35 // This test is excluded from Solaris because the 8192-bit RSA key pair
  36 // generator is extremely slow there. Please note the fake
  37 // KeyPairGenerator will not be used because of provider preferences.
  38 
  39 import jdk.test.lib.Asserts;
  40 import jdk.test.lib.SecurityTools;
  41 import jdk.test.lib.process.OutputAnalyzer;
  42 import jdk.test.lib.security.DerUtils;
  43 import sun.security.util.ObjectIdentifier;
  44 import sun.security.x509.AlgorithmId;
  45 
  46 import java.io.File;
  47 import java.security.KeyStore;
  48 import java.security.cert.X509Certificate;
  49 
  50 public class PSS {
  51 


< prev index next >