1 /*
   2  * Copyright (c) 2005, 2011, 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 /**
  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);
  52         KeyStore ks = KeyStore.getInstance("PKCS11", p);
  53         ks.load(null, password);
  54         Collection<String> aliases = new TreeSet<String>(Collections.list(ks.aliases()));
  55         System.out.println("entries: " + aliases.size());
  56         System.out.println(aliases);
  57 
  58         PrivateKey privateKey = (PrivateKey)ks.getKey(keyAlias, password);
  59         System.out.println(privateKey);
  60 
  61         byte[] data = new byte[1024];
  62         Random random = new Random();
  63         random.nextBytes(data);
  64 
  65         System.out.println("Signing...");
  66         Signature signature = Signature.getInstance("MD5withRSA");
  67         signature.initSign(privateKey);
  68         signature.update(data);
  69         byte[] sig = signature.sign();
  70 
  71         X509Certificate[] chain = (X509Certificate[])ks.getCertificateChain(keyAlias);
  72         signature.initVerify(chain[0].getPublicKey());
  73         signature.update(data);
  74         boolean ok = signature.verify(sig);
  75         if (ok == false) {
  76             throw new Exception("Signature verification error");
  77         }
  78 
  79         System.out.println("OK");
  80 
  81     }
  82 
  83 }