org.bouncycastle.crypto.asymmetric.AsymmetricGOST3410PrivateKey Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bc-fips Show documentation
Show all versions of bc-fips Show documentation
The FIPS 140-3 Bouncy Castle Crypto package is a Java implementation of cryptographic algorithms certified to FIPS 140-3 level 1. This jar contains JCE provider and low-level API for the BC-FJA version 2.0.0, FIPS Certificate #4743. Please see certificate for certified platform details.
package org.bouncycastle.crypto.asymmetric;
import java.io.IOException;
import java.math.BigInteger;
import java.util.concurrent.atomic.AtomicBoolean;
import org.bouncycastle.asn1.ASN1OctetString;
import org.bouncycastle.asn1.DEROctetString;
import org.bouncycastle.asn1.cryptopro.CryptoProObjectIdentifiers;
import org.bouncycastle.asn1.cryptopro.GOST3410PublicKeyAlgParameters;
import org.bouncycastle.asn1.pkcs.PrivateKeyInfo;
import org.bouncycastle.asn1.x509.AlgorithmIdentifier;
import org.bouncycastle.crypto.Algorithm;
import org.bouncycastle.crypto.AsymmetricPrivateKey;
import org.bouncycastle.crypto.internal.Permissions;
/**
* Class for keys for GOST R 34.10-1994 private keys.
*/
public final class AsymmetricGOST3410PrivateKey
extends AsymmetricGOST3410Key
implements AsymmetricPrivateKey
{
private final AtomicBoolean hasBeenDestroyed = new AtomicBoolean(false);
private int hashCode;
private BigInteger x;
public AsymmetricGOST3410PrivateKey(Algorithm algorithm, GOST3410Parameters params, BigInteger x)
{
super(algorithm, params);
this.x = x;
this.hashCode = calculateHashCode();
}
public AsymmetricGOST3410PrivateKey(Algorithm algorithm, byte[] enc)
{
this(algorithm, PrivateKeyInfo.getInstance(enc));
}
public AsymmetricGOST3410PrivateKey(Algorithm algorithm, PrivateKeyInfo privateKeyInfo)
{
super(algorithm, CryptoProObjectIdentifiers.gostR3410_94, privateKeyInfo.getPrivateKeyAlgorithm());
this.x = parsePrivateKey(privateKeyInfo);
this.hashCode = calculateHashCode();
}
private static BigInteger parsePrivateKey(PrivateKeyInfo info)
{
try
{
ASN1OctetString derX = ASN1OctetString.getInstance(info.parsePrivateKey());
byte[] keyEnc = derX.getOctets();
byte[] keyBytes = new byte[keyEnc.length];
for (int i = 0; i != keyEnc.length; i++)
{
keyBytes[i] = keyEnc[keyEnc.length - 1 - i]; // was little endian
}
return new BigInteger(1, keyBytes);
}
catch (IOException e)
{
throw new IllegalArgumentException("Unable to parse DSA private key: " + e.getMessage(), e);
}
}
/**
* Return the algorithm this GOST R 34.10 key is for.
*
* @return the key's algorithm.
*/
public final Algorithm getAlgorithm()
{
KeyUtils.checkDestroyed(this);
return super.getAlgorithm();
}
/**
* Return the domain parameters associated with this key.These will either
* be for GOST R 34.10-1994 or GOST R 34.10-2001 depending on the key type.
*
* @return the GOST3410 domain parameters.
*/
public final GOST3410Parameters getParameters()
{
KeyUtils.checkDestroyed(this);
return super.getParameters();
}
public final byte[] getEncoded()
{
byte[] keyEnc = this.getX().toByteArray();
byte[] keyBytes;
if (keyEnc[0] == 0)
{
keyBytes = new byte[keyEnc.length - 1];
}
else
{
keyBytes = new byte[keyEnc.length];
}
for (int i = 0; i != keyBytes.length; i++)
{
keyBytes[i] = keyEnc[keyEnc.length - 1 - i]; // must be little endian
}
GOST3410Parameters params = this.getParameters();
if (params.getEncryptionParamSet() != null)
{
return KeyUtils.getEncodedPrivateKeyInfo(new AlgorithmIdentifier(CryptoProObjectIdentifiers.gostR3410_94, new GOST3410PublicKeyAlgParameters(params.getPublicKeyParamSet(), params.getDigestParamSet(), params.getEncryptionParamSet())), new DEROctetString(keyBytes));
}
return KeyUtils.getEncodedPrivateKeyInfo(new AlgorithmIdentifier(CryptoProObjectIdentifiers.gostR3410_94, new GOST3410PublicKeyAlgParameters(params.getPublicKeyParamSet(), params.getDigestParamSet())), new DEROctetString(keyBytes));
}
public BigInteger getX()
{
KeyUtils.checkPermission(Permissions.CanOutputPrivateKey);
KeyUtils.checkDestroyed(this);
return x;
}
public void destroy()
{
checkApprovedOnlyModeStatus();
KeyUtils.checkPermission(Permissions.CanOutputPrivateKey);
if (!hasBeenDestroyed.getAndSet(true))
{
this.x = null;
this.hashCode = -1;
super.zeroize();
}
}
public boolean isDestroyed()
{
return hasBeenDestroyed.get();
}
@Override
public int hashCode()
{
return hashCode;
}
private int calculateHashCode()
{
int result = x.hashCode();
result = 31 * result + this.getParameters().hashCode();
return result;
}
@Override
protected void finalize()
throws Throwable
{
super.finalize();
destroy();
}
@Override
public boolean equals(Object o)
{
if (this == o)
{
return true;
}
if (!(o instanceof AsymmetricGOST3410PrivateKey))
{
return false;
}
AsymmetricGOST3410PrivateKey other = (AsymmetricGOST3410PrivateKey)o;
if (this.isDestroyed() || other.isDestroyed())
{
return false;
}
return x.equals(other.x) && this.getParameters().equals(other.getParameters());
}
}