
de.alpharogroup.crypto.key.PublicKeyExtensions 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;
import java.io.File;
import java.io.IOException;
import java.security.PublicKey;
import java.security.interfaces.DSAPublicKey;
import java.security.interfaces.ECPublicKey;
import java.security.interfaces.RSAPublicKey;
import java.util.List;
import java.util.Objects;
import org.apache.commons.codec.binary.Base64;
import de.alpharogroup.crypto.hex.HexExtensions;
import de.alpharogroup.crypto.key.reader.PublicKeyReader;
import de.alpharogroup.crypto.key.writer.PublicKeyWriter;
import de.alpharogroup.string.StringExtensions;
/**
* The class {@link PublicKeyExtensions}.
*/
public final class PublicKeyExtensions
{
/**
* Gets the key length of the given {@link PublicKey}.
*
* @param publicKey
* the public key
* @return the key length
*/
public static int getKeyLength(final PublicKey publicKey)
{
int length = -1;
if (publicKey == null)
{
return length;
}
if (publicKey instanceof RSAPublicKey)
{
length = ((RSAPublicKey)publicKey).getModulus().bitLength();
}
if (publicKey instanceof DSAPublicKey)
{
length = ((DSAPublicKey)publicKey).getParams().getP().bitLength();
}
if (publicKey instanceof ECPublicKey)
{
length = ((ECPublicKey)publicKey).getParams().getCurve().getField().getFieldSize();
}
return length;
}
/**
* Transform the given {@link PublicKey} to a base64 encoded {@link String} value.
*
* @param publicKey
* the public key
* @return the base64 encoded {@link String} value.
*/
public static String toBase64(final PublicKey publicKey)
{
final byte[] encoded = publicKey.getEncoded();
return Base64.encodeBase64String(encoded);
}
/**
* Transform the given {@link PublicKey} to a hexadecimal {@link String} value.
*
* @param publicKey
* the public key
* @return the new hexadecimal {@link String} value.
*/
public static String toHexString(final PublicKey publicKey)
{
return toHexString(publicKey, true);
}
/**
* Transform the given {@link PublicKey} to a hexadecimal {@link String} value.
*
* @param publicKey
* the public key
* @param lowerCase
* the flag if the result shell be transform in lower case. If true the result is
* @return the new hexadecimal {@link String} value.
*/
public static String toHexString(final PublicKey publicKey, final boolean lowerCase)
{
return HexExtensions.toHexString(publicKey.getEncoded(), lowerCase);
}
/**
* Write the given {@link PublicKey} into the given {@link File}.
*
* @param publicKey
* the public key
* @param file
* the file to write in
* @throws IOException
* Signals that an I/O exception has occurred.
*/
public static void toPemFile(final PublicKey publicKey, final File file) throws IOException
{
Objects.requireNonNull(publicKey);
Objects.requireNonNull(file);
PublicKeyWriter.writeInPemFormat(publicKey, file);
}
/**
* Transform the public key in pem format.
*
* @param publicKey
* the public key
* @return the public key in pem format
*/
public static String toPemFormat(final PublicKey publicKey)
{
final String publicKeyAsBase64String = toBase64(publicKey);
final List parts = StringExtensions.splitByFixedLength(publicKeyAsBase64String, 64);
final StringBuilder sb = new StringBuilder();
sb.append(PublicKeyReader.BEGIN_PUBLIC_KEY_PREFIX);
for (final String part : parts)
{
sb.append(part);
sb.append(System.lineSeparator());
}
sb.append(PublicKeyReader.END_PUBLIC_KEY_SUFFIX);
sb.append(System.lineSeparator());
return sb.toString();
}
private PublicKeyExtensions()
{
throw new UnsupportedOperationException(
"This is a utility class and cannot be instantiated");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy