
de.alpharogroup.crypto.key.reader.PemObjectReader Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of crypt-data Show documentation
Show all versions of crypt-data Show documentation
Utility project that provides data beans, writers and readers for encryption and decryption
The newest version!
/**
* The MIT License
*
* Copyright (C) 2015 Asterios Raptis
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
* LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
package de.alpharogroup.crypto.key.reader;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.StringWriter;
import java.security.PrivateKey;
import java.security.Security;
import org.bouncycastle.jce.provider.BouncyCastleProvider;
import org.bouncycastle.openssl.PEMDecryptorProvider;
import org.bouncycastle.openssl.PEMEncryptedKeyPair;
import org.bouncycastle.openssl.PEMKeyPair;
import org.bouncycastle.openssl.PEMParser;
import org.bouncycastle.openssl.jcajce.JcaPEMKeyConverter;
import org.bouncycastle.openssl.jcajce.JcePEMDecryptorProviderBuilder;
import org.bouncycastle.util.io.pem.PemObject;
import org.bouncycastle.util.io.pem.PemReader;
import org.bouncycastle.util.io.pem.PemWriter;
import de.alpharogroup.crypto.provider.SecurityProvider;
/**
* The class {@link PemObjectReader} is a utility class for reading {@link PemObject} from a file.
*/
public final class PemObjectReader
{
/**
* Gets the pem object.
*
* @param file
* the file
* @return the pem object
* @throws IOException
* Signals that an I/O exception has occurred.
*/
public static PemObject getPemObject(final File file) throws IOException
{
PemObject pemObject;
try (PemReader pemReader = new PemReader(new InputStreamReader(new FileInputStream(file))))
{
pemObject = pemReader.readPemObject();
}
return pemObject;
}
/**
* Reads the given {@link File}( in *.pem format) that contains a password protected private
* key.
*
* @param keyFile
* the file with the password protected private key
* @param password
* the password
* @return the {@link PrivateKey} object
* @throws IOException
* Signals that an I/O exception has occurred.
*/
public static PrivateKey readPemPrivateKey(File keyFile, String password) throws IOException
{
Security.addProvider(new BouncyCastleProvider());
try (PEMParser pemParser = new PEMParser(
new InputStreamReader(new FileInputStream(keyFile))))
{
PEMEncryptedKeyPair encryptedKeyPair = (PEMEncryptedKeyPair)pemParser.readObject();
PEMDecryptorProvider decryptorProvider = new JcePEMDecryptorProviderBuilder()
.build(password.toCharArray());
PEMKeyPair pemKeyPair = encryptedKeyPair.decryptKeyPair(decryptorProvider);
JcaPEMKeyConverter converter = new JcaPEMKeyConverter()
.setProvider(SecurityProvider.BC.name());
return converter.getPrivateKey(pemKeyPair.getPrivateKeyInfo());
}
}
/**
* Transform the given {@link PemObject} object in pem format {@link String} object.
*
* @param pemObject
* the pem object
* @return the string
* @throws IOException
* Signals that an I/O exception has occurred.
*/
public static String toPemFormat(final PemObject pemObject) throws IOException
{
final StringWriter stringWriter = new StringWriter();
final PemWriter pemWriter = new PemWriter(stringWriter);
pemWriter.writeObject(pemObject);
pemWriter.close();
final String pemString = stringWriter.toString();
return pemString;
}
private PemObjectReader()
{
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy