< prev index next >

test/sun/security/pkcs11/Secmod/GetPrivateKey.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 6273877 6322208 6275523
  27  * @summary make sure we can access the NSS softtoken KeyStore and use a private key
  28  * @author Andreas Sterbenz
  29  * @library ..
  30  * @run main/othervm GetPrivateKey

  31  */
  32 
  33 import java.util.*;
  34 
  35 import java.security.*;
  36 import java.security.KeyStore.*;
  37 import java.security.cert.*;
  38 
  39 public class GetPrivateKey extends SecmodTest {
  40 
  41     public static void main(String[] args) throws Exception {
  42         if (initSecmod() == false) {
  43             return;
  44         }
  45 
  46         String configName = BASE + SEP + "nss.cfg";
  47         Provider p = getSunPKCS11(configName);
  48 
  49         System.out.println(p);
  50         Security.addProvider(p);




  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 6273877 6322208 6275523
  27  * @summary make sure we can access the NSS softtoken KeyStore and use a private key
  28  * @author Andreas Sterbenz
  29  * @library ..
  30  * @run main/othervm GetPrivateKey
  31  * @key randomness
  32  */
  33 
  34 import java.util.*;
  35 
  36 import java.security.*;
  37 import java.security.KeyStore.*;
  38 import java.security.cert.*;
  39 
  40 public class GetPrivateKey extends SecmodTest {
  41 
  42     public static void main(String[] args) throws Exception {
  43         if (initSecmod() == false) {
  44             return;
  45         }
  46 
  47         String configName = BASE + SEP + "nss.cfg";
  48         Provider p = getSunPKCS11(configName);
  49 
  50         System.out.println(p);
  51         Security.addProvider(p);


< prev index next >