1 /*
   2  * Copyright (c) 2005, 2013, 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 // common infrastructure for Secmod tests
  26 
  27 import java.io.*;
  28 
  29 import java.security.Provider;
  30 
  31 public class SecmodTest extends PKCS11Test {
  32 
  33     static String LIBPATH;
  34     static String DBDIR;
  35     static char[] password = "test12".toCharArray();
  36     static String keyAlias = "mykey";
  37 
  38     static boolean initSecmod() throws Exception {
  39         useNSS();
  40         LIBPATH = getNSSLibDir();
  41         if (LIBPATH == null) {
  42             return false;
  43         }
  44         // load all the libraries except libnss3 into memory
  45         if (loadNSPR(LIBPATH) == false) {
  46             return false;
  47         }
  48         safeReload(LIBPATH + System.mapLibraryName("softokn3"));
  49         safeReload(LIBPATH + System.mapLibraryName("nssckbi"));
  50 
  51         DBDIR = System.getProperty("test.classes", ".") + SEP + "tmpdb";
  52         System.setProperty("pkcs11test.nss.db", DBDIR);
  53         File dbdirFile = new File(DBDIR);
  54         if (dbdirFile.exists() == false) {
  55             dbdirFile.mkdir();
  56         }
  57         copyFile("secmod.db", BASE, DBDIR);
  58         copyFile("key3.db", BASE, DBDIR);
  59         copyFile("cert8.db", BASE, DBDIR);
  60         return true;
  61     }
  62 
  63     private static void copyFile(String name, String srcDir, String dstDir) throws IOException {
  64         InputStream in = new FileInputStream(new File(srcDir, name));
  65         OutputStream out = new FileOutputStream(new File(dstDir, name));
  66         byte[] buf = new byte[2048];
  67         while (true) {
  68             int n = in.read(buf);
  69             if (n < 0) {
  70                 break;
  71             }
  72             out.write(buf, 0, n);
  73         }
  74         in.close();
  75         out.close();
  76     }
  77 
  78     public void main(Provider p) throws Exception {
  79         // dummy
  80     }
  81 
  82 }