net.jsign.KeyStoreUtils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jsign-core Show documentation
Show all versions of jsign-core Show documentation
Pure Java implementation of Microsoft Authenticode for signing Windows executable files
/**
* Copyright 2017 Emmanuel Bourg
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package net.jsign;
import java.io.File;
import java.io.FileInputStream;
import java.security.KeyStore;
import java.security.KeyStoreException;
import java.security.Provider;
/**
* Helper class for loading KeyStores (JKS, PKCS#12 or PKCS#11).
*
* @author Emmanuel Bourg
* @since 2.0
*/
public class KeyStoreUtils {
private KeyStoreUtils() {
}
/**
* Load the keystore from the specified file.
*
* @param keystore the file containing the keystore
* @param storetype the type of the keystore (either JKS, PKCS12 or PKCS11).
* If null the type is inferred from the extension of the file (.p12 or .pfx for PKCS#12 keystores)
* @param storepass The password of the keystore
* @param provider The security provider used to load the keystore (must be specified for PKCS#11 keystores)
* @return the keystore loaded
* @throws KeyStoreException thrown if the keystore cannot be loaded
*/
public static KeyStore load(File keystore, String storetype, String storepass, Provider provider) throws KeyStoreException {
if (keystore != null && storetype == null) {
// guess the type of the keystore from the extension of the file
String filename = keystore.getName().toLowerCase();
if (filename.endsWith(".p12") || filename.endsWith(".pfx")) {
storetype = "PKCS12";
} else {
storetype = "JKS";
}
}
KeyStore ks;
try {
if ("PKCS11".equals(storetype)) {
ks = KeyStore.getInstance(storetype, provider);
} else {
ks = KeyStore.getInstance(storetype);
}
} catch (KeyStoreException e) {
throw new KeyStoreException("keystore type '" + storetype + "' is not supported", e);
}
if (keystore == null || !keystore.exists()) {
throw new KeyStoreException("The keystore " + keystore + " couldn't be found");
}
try {
FileInputStream in = "PKCS11".equals(storetype) ? null : new FileInputStream(keystore);
try {
ks.load(in, storepass != null ? storepass.toCharArray() : null);
} finally {
if (in != null) {
in.close();
}
}
} catch (Exception e) {
throw new KeyStoreException("Unable to load the keystore " + keystore, e);
}
return ks;
}
}