< prev index next >

test/sun/security/mscapi/ShortRSAKeyWithinTLS.java

Print this page
rev 11258 : 8139436: sun.security.mscapi.KeyStore might load incomplete data
Reviewed-by: vinnie, weijun
   1 /*
   2  * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  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 import java.io.*;
  25 import java.net.*;
  26 import java.util.*;
  27 import java.security.*;
  28 import javax.net.*;
  29 import javax.net.ssl.*;
  30 import java.lang.reflect.*;
  31 
  32 import sun.security.util.KeyUtil;
  33 
  34 public class ShortRSAKeyWithinTLS {
  35 
  36     /*
  37      * =============================================================
  38      * Set the various variables needed for the tests, then
  39      * specify what tests to run on each side.
  40      */
  41 
  42     /*
  43      * Should we run the client or server in a separate thread?
  44      * Both sides can throw exceptions, but do you have a preference
  45      * as to which side should be the main thread.
  46      */
  47     static boolean separateServerThread = false;
  48 
  49     /*
  50      * Is the server ready to serve?


   1 /*
   2  * Copyright (c) 2012, 2015, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  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 import java.io.*;


  25 import java.security.*;
  26 import javax.net.*;
  27 import javax.net.ssl.*;

  28 
  29 import sun.security.util.KeyUtil;
  30 
  31 public class ShortRSAKeyWithinTLS {
  32 
  33     /*
  34      * =============================================================
  35      * Set the various variables needed for the tests, then
  36      * specify what tests to run on each side.
  37      */
  38 
  39     /*
  40      * Should we run the client or server in a separate thread?
  41      * Both sides can throw exceptions, but do you have a preference
  42      * as to which side should be the main thread.
  43      */
  44     static boolean separateServerThread = false;
  45 
  46     /*
  47      * Is the server ready to serve?


< prev index next >