org.bouncycastle.pqc.jcajce.provider.rainbow.BCRainbowPrivateKey Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bcprov-ext-debug-jdk18on Show documentation
Show all versions of bcprov-ext-debug-jdk18on Show documentation
The Bouncy Castle Crypto package is a Java implementation of cryptographic algorithms. This jar contains JCE provider and lightweight API for the Bouncy Castle Cryptography APIs for Java 1.8 and later with debug enabled.
The newest version!
package org.bouncycastle.pqc.jcajce.provider.rainbow;
import java.io.IOException;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
import org.bouncycastle.asn1.ASN1Set;
import org.bouncycastle.asn1.pkcs.PrivateKeyInfo;
import org.bouncycastle.pqc.crypto.rainbow.RainbowPrivateKeyParameters;
import org.bouncycastle.pqc.crypto.rainbow.RainbowPublicKeyParameters;
import org.bouncycastle.pqc.crypto.util.PrivateKeyFactory;
import org.bouncycastle.pqc.jcajce.interfaces.RainbowPrivateKey;
import org.bouncycastle.pqc.jcajce.interfaces.RainbowPublicKey;
import org.bouncycastle.pqc.jcajce.provider.util.KeyUtil;
import org.bouncycastle.pqc.jcajce.spec.RainbowParameterSpec;
import org.bouncycastle.util.Arrays;
import org.bouncycastle.util.Strings;
import org.bouncycastle.util.encoders.Hex;
public class BCRainbowPrivateKey
implements RainbowPrivateKey
{
private static final long serialVersionUID = 1L;
private transient RainbowPrivateKeyParameters params;
private transient String algorithm;
private transient byte[] encoding;
private transient ASN1Set attributes;
public BCRainbowPrivateKey(
RainbowPrivateKeyParameters params)
{
init(params, null);
}
public BCRainbowPrivateKey(PrivateKeyInfo keyInfo)
throws IOException
{
init(keyInfo);
}
private void init(PrivateKeyInfo keyInfo)
throws IOException
{
init((RainbowPrivateKeyParameters) PrivateKeyFactory.createKey(keyInfo), keyInfo.getAttributes());
}
private void init(RainbowPrivateKeyParameters params, ASN1Set attributes)
{
this.attributes = attributes;
this.params = params;
this.algorithm = Strings.toUpperCase(params.getParameters().getName());
}
/**
* Compare this Rainbow private key with another object.
*
* @param o the other object
* @return the result of the comparison
*/
public boolean equals(Object o)
{
if (o == this)
{
return true;
}
if (o instanceof BCRainbowPrivateKey)
{
BCRainbowPrivateKey otherKey = (BCRainbowPrivateKey)o;
return Arrays.areEqual(getEncoded(), otherKey.getEncoded());
}
return false;
}
public int hashCode()
{
return Arrays.hashCode(getEncoded());
}
/**
* @return name of the algorithm
*/
public final String getAlgorithm()
{
return algorithm;
}
public byte[] getEncoded()
{
if (encoding == null)
{
encoding = KeyUtil.getEncodedPrivateKeyInfo(params, attributes);
}
return Arrays.clone(encoding);
}
public RainbowParameterSpec getParameterSpec()
{
return RainbowParameterSpec.fromName(params.getParameters().getName());
}
public String getFormat()
{
return "PKCS#8";
}
public RainbowPublicKey getPublicKey()
{
return new BCRainbowPublicKey(new RainbowPublicKeyParameters(params.getParameters(), params.getPublicKey()));
}
RainbowPrivateKeyParameters getKeyParams()
{
return params;
}
private void readObject(
ObjectInputStream in)
throws IOException, ClassNotFoundException
{
in.defaultReadObject();
byte[] enc = (byte[])in.readObject();
init(PrivateKeyInfo.getInstance(enc));
}
private void writeObject(
ObjectOutputStream out)
throws IOException
{
out.defaultWriteObject();
out.writeObject(this.getEncoded());
}
}