< prev index next >

test/sun/security/pkcs11/ec/ReadPKCS12.java

Print this page




  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 /**
  25  * @test
  26  * @bug 6405536
  27  * @summary Verify that we can parse ECPrivateKeys from PKCS#12 and use them
  28  * @author Andreas Sterbenz
  29  * @library ..
  30  * @library ../../../../java/security/testlibrary

  31  */
  32 
  33 import java.io.*;
  34 import java.util.*;
  35 
  36 import java.security.*;
  37 import java.security.interfaces.*;
  38 import java.security.cert.*;
  39 import java.security.cert.Certificate;
  40 
  41 import javax.security.auth.x500.X500Principal;
  42 
  43 public class ReadPKCS12 extends PKCS11Test {
  44 
  45     private final static boolean COPY = false;
  46 
  47     public static void main(String[] args) throws Exception {
  48         main(new ReadPKCS12());
  49     }
  50 




  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 /**
  25  * @test
  26  * @bug 6405536
  27  * @summary Verify that we can parse ECPrivateKeys from PKCS#12 and use them
  28  * @author Andreas Sterbenz
  29  * @library ..
  30  * @library ../../../../java/security/testlibrary
  31  * @key randomness
  32  */
  33 
  34 import java.io.*;
  35 import java.util.*;
  36 
  37 import java.security.*;
  38 import java.security.interfaces.*;
  39 import java.security.cert.*;
  40 import java.security.cert.Certificate;
  41 
  42 import javax.security.auth.x500.X500Principal;
  43 
  44 public class ReadPKCS12 extends PKCS11Test {
  45 
  46     private final static boolean COPY = false;
  47 
  48     public static void main(String[] args) throws Exception {
  49         main(new ReadPKCS12());
  50     }
  51 


< prev index next >