init commit
This commit is contained in:
@@ -0,0 +1,228 @@
|
||||
using System;
|
||||
using System.IO;
|
||||
using Org.BouncyCastle.Asn1;
|
||||
using Org.BouncyCastle.Asn1.CryptoPro;
|
||||
using Org.BouncyCastle.Asn1.EdEC;
|
||||
using Org.BouncyCastle.Asn1.Oiw;
|
||||
using Org.BouncyCastle.Asn1.Pkcs;
|
||||
using Org.BouncyCastle.Asn1.Rosstandart;
|
||||
using Org.BouncyCastle.Asn1.Sec;
|
||||
using Org.BouncyCastle.Asn1.X509;
|
||||
using Org.BouncyCastle.Asn1.X9;
|
||||
using Org.BouncyCastle.Crypto;
|
||||
using Org.BouncyCastle.Crypto.Generators;
|
||||
using Org.BouncyCastle.Crypto.Parameters;
|
||||
using Org.BouncyCastle.Math;
|
||||
using Org.BouncyCastle.Pkcs;
|
||||
using Org.BouncyCastle.Utilities;
|
||||
|
||||
namespace Org.BouncyCastle.Security;
|
||||
|
||||
public sealed class PrivateKeyFactory
|
||||
{
|
||||
private PrivateKeyFactory()
|
||||
{
|
||||
}
|
||||
|
||||
public static AsymmetricKeyParameter CreateKey(byte[] privateKeyInfoData)
|
||||
{
|
||||
return CreateKey(PrivateKeyInfo.GetInstance(Asn1Object.FromByteArray(privateKeyInfoData)));
|
||||
}
|
||||
|
||||
public static AsymmetricKeyParameter CreateKey(Stream inStr)
|
||||
{
|
||||
return CreateKey(PrivateKeyInfo.GetInstance(Asn1Object.FromStream(inStr)));
|
||||
}
|
||||
|
||||
public static AsymmetricKeyParameter CreateKey(PrivateKeyInfo keyInfo)
|
||||
{
|
||||
AlgorithmIdentifier privateKeyAlgorithm = keyInfo.PrivateKeyAlgorithm;
|
||||
DerObjectIdentifier algorithm = privateKeyAlgorithm.Algorithm;
|
||||
if (algorithm.Equals(PkcsObjectIdentifiers.RsaEncryption) || algorithm.Equals(X509ObjectIdentifiers.IdEARsa) || algorithm.Equals(PkcsObjectIdentifiers.IdRsassaPss) || algorithm.Equals(PkcsObjectIdentifiers.IdRsaesOaep))
|
||||
{
|
||||
RsaPrivateKeyStructure instance = RsaPrivateKeyStructure.GetInstance(keyInfo.ParsePrivateKey());
|
||||
return new RsaPrivateCrtKeyParameters(instance.Modulus, instance.PublicExponent, instance.PrivateExponent, instance.Prime1, instance.Prime2, instance.Exponent1, instance.Exponent2, instance.Coefficient);
|
||||
}
|
||||
if (algorithm.Equals(PkcsObjectIdentifiers.DhKeyAgreement))
|
||||
{
|
||||
DHParameter dHParameter = new DHParameter(Asn1Sequence.GetInstance(privateKeyAlgorithm.Parameters.ToAsn1Object()));
|
||||
DerInteger derInteger = (DerInteger)keyInfo.ParsePrivateKey();
|
||||
int l = dHParameter.L?.IntValue ?? 0;
|
||||
DHParameters parameters = new DHParameters(dHParameter.P, dHParameter.G, null, l);
|
||||
return new DHPrivateKeyParameters(derInteger.Value, parameters, algorithm);
|
||||
}
|
||||
if (algorithm.Equals(OiwObjectIdentifiers.ElGamalAlgorithm))
|
||||
{
|
||||
ElGamalParameter elGamalParameter = new ElGamalParameter(Asn1Sequence.GetInstance(privateKeyAlgorithm.Parameters.ToAsn1Object()));
|
||||
DerInteger derInteger2 = (DerInteger)keyInfo.ParsePrivateKey();
|
||||
return new ElGamalPrivateKeyParameters(derInteger2.Value, new ElGamalParameters(elGamalParameter.P, elGamalParameter.G));
|
||||
}
|
||||
if (algorithm.Equals(X9ObjectIdentifiers.IdDsa))
|
||||
{
|
||||
DerInteger derInteger3 = (DerInteger)keyInfo.ParsePrivateKey();
|
||||
Asn1Encodable parameters2 = privateKeyAlgorithm.Parameters;
|
||||
DsaParameters parameters3 = null;
|
||||
if (parameters2 != null)
|
||||
{
|
||||
DsaParameter instance2 = DsaParameter.GetInstance(parameters2.ToAsn1Object());
|
||||
parameters3 = new DsaParameters(instance2.P, instance2.Q, instance2.G);
|
||||
}
|
||||
return new DsaPrivateKeyParameters(derInteger3.Value, parameters3);
|
||||
}
|
||||
if (algorithm.Equals(X9ObjectIdentifiers.IdECPublicKey))
|
||||
{
|
||||
X962Parameters x962Parameters = new X962Parameters(privateKeyAlgorithm.Parameters.ToAsn1Object());
|
||||
X9ECParameters x9ECParameters = ((!x962Parameters.IsNamedCurve) ? new X9ECParameters((Asn1Sequence)x962Parameters.Parameters) : ECKeyPairGenerator.FindECCurveByOid((DerObjectIdentifier)x962Parameters.Parameters));
|
||||
ECPrivateKeyStructure instance3 = ECPrivateKeyStructure.GetInstance(keyInfo.ParsePrivateKey());
|
||||
BigInteger key = instance3.GetKey();
|
||||
if (x962Parameters.IsNamedCurve)
|
||||
{
|
||||
return new ECPrivateKeyParameters("EC", key, (DerObjectIdentifier)x962Parameters.Parameters);
|
||||
}
|
||||
ECDomainParameters parameters4 = new ECDomainParameters(x9ECParameters.Curve, x9ECParameters.G, x9ECParameters.N, x9ECParameters.H, x9ECParameters.GetSeed());
|
||||
return new ECPrivateKeyParameters(key, parameters4);
|
||||
}
|
||||
if (algorithm.Equals(CryptoProObjectIdentifiers.GostR3410x2001))
|
||||
{
|
||||
Gost3410PublicKeyAlgParameters gost3410PublicKeyAlgParameters = new Gost3410PublicKeyAlgParameters(Asn1Sequence.GetInstance(privateKeyAlgorithm.Parameters.ToAsn1Object()));
|
||||
ECDomainParameters byOid = ECGost3410NamedCurves.GetByOid(gost3410PublicKeyAlgParameters.PublicKeyParamSet);
|
||||
if (byOid == null)
|
||||
{
|
||||
throw new ArgumentException("Unrecognized curve OID for GostR3410x2001 private key");
|
||||
}
|
||||
Asn1Object asn1Object = keyInfo.ParsePrivateKey();
|
||||
ECPrivateKeyStructure eCPrivateKeyStructure = ((!(asn1Object is DerInteger)) ? ECPrivateKeyStructure.GetInstance(asn1Object) : new ECPrivateKeyStructure(byOid.N.BitLength, ((DerInteger)asn1Object).PositiveValue));
|
||||
return new ECPrivateKeyParameters("ECGOST3410", eCPrivateKeyStructure.GetKey(), gost3410PublicKeyAlgParameters.PublicKeyParamSet);
|
||||
}
|
||||
if (algorithm.Equals(CryptoProObjectIdentifiers.GostR3410x94))
|
||||
{
|
||||
Gost3410PublicKeyAlgParameters instance4 = Gost3410PublicKeyAlgParameters.GetInstance(privateKeyAlgorithm.Parameters);
|
||||
Asn1Object asn1Object2 = keyInfo.ParsePrivateKey();
|
||||
BigInteger x = ((!(asn1Object2 is DerInteger)) ? new BigInteger(1, Arrays.Reverse(Asn1OctetString.GetInstance(asn1Object2).GetOctets())) : DerInteger.GetInstance(asn1Object2).PositiveValue);
|
||||
return new Gost3410PrivateKeyParameters(x, instance4.PublicKeyParamSet);
|
||||
}
|
||||
if (algorithm.Equals(EdECObjectIdentifiers.id_X25519))
|
||||
{
|
||||
return new X25519PrivateKeyParameters(GetRawKey(keyInfo, X25519PrivateKeyParameters.KeySize), 0);
|
||||
}
|
||||
if (algorithm.Equals(EdECObjectIdentifiers.id_X448))
|
||||
{
|
||||
return new X448PrivateKeyParameters(GetRawKey(keyInfo, X448PrivateKeyParameters.KeySize), 0);
|
||||
}
|
||||
if (algorithm.Equals(EdECObjectIdentifiers.id_Ed25519))
|
||||
{
|
||||
return new Ed25519PrivateKeyParameters(GetRawKey(keyInfo, Ed25519PrivateKeyParameters.KeySize), 0);
|
||||
}
|
||||
if (algorithm.Equals(EdECObjectIdentifiers.id_Ed448))
|
||||
{
|
||||
return new Ed448PrivateKeyParameters(GetRawKey(keyInfo, Ed448PrivateKeyParameters.KeySize), 0);
|
||||
}
|
||||
if (algorithm.Equals(RosstandartObjectIdentifiers.id_tc26_gost_3410_12_512) || algorithm.Equals(RosstandartObjectIdentifiers.id_tc26_gost_3410_12_256))
|
||||
{
|
||||
Gost3410PublicKeyAlgParameters instance5 = Gost3410PublicKeyAlgParameters.GetInstance(keyInfo.PrivateKeyAlgorithm.Parameters);
|
||||
ECGost3410Parameters eCGost3410Parameters = null;
|
||||
BigInteger bigInteger = null;
|
||||
Asn1Object asn1Object3 = keyInfo.PrivateKeyAlgorithm.Parameters.ToAsn1Object();
|
||||
if (asn1Object3 is Asn1Sequence && (Asn1Sequence.GetInstance(asn1Object3).Count == 2 || Asn1Sequence.GetInstance(asn1Object3).Count == 3))
|
||||
{
|
||||
ECDomainParameters byOid2 = ECGost3410NamedCurves.GetByOid(instance5.PublicKeyParamSet);
|
||||
eCGost3410Parameters = new ECGost3410Parameters(new ECNamedDomainParameters(instance5.PublicKeyParamSet, byOid2), instance5.PublicKeyParamSet, instance5.DigestParamSet, instance5.EncryptionParamSet);
|
||||
Asn1Encodable asn1Encodable = keyInfo.ParsePrivateKey();
|
||||
if (asn1Encodable is DerInteger)
|
||||
{
|
||||
bigInteger = DerInteger.GetInstance(asn1Encodable).PositiveValue;
|
||||
}
|
||||
else
|
||||
{
|
||||
byte[] octets = Asn1OctetString.GetInstance(asn1Encodable).GetOctets();
|
||||
byte[] array = new byte[octets.Length];
|
||||
for (int i = 0; i != octets.Length; i++)
|
||||
{
|
||||
array[i] = octets[octets.Length - 1 - i];
|
||||
}
|
||||
bigInteger = new BigInteger(1, array);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
X962Parameters instance6 = X962Parameters.GetInstance(keyInfo.PrivateKeyAlgorithm.Parameters);
|
||||
if (instance6.IsNamedCurve)
|
||||
{
|
||||
DerObjectIdentifier instance7 = DerObjectIdentifier.GetInstance(instance6.Parameters);
|
||||
X9ECParameters byOid3 = ECNamedCurveTable.GetByOid(instance7);
|
||||
if (byOid3 == null)
|
||||
{
|
||||
ECDomainParameters byOid4 = ECGost3410NamedCurves.GetByOid(instance7);
|
||||
eCGost3410Parameters = new ECGost3410Parameters(new ECNamedDomainParameters(instance7, byOid4.Curve, byOid4.G, byOid4.N, byOid4.H, byOid4.GetSeed()), instance5.PublicKeyParamSet, instance5.DigestParamSet, instance5.EncryptionParamSet);
|
||||
}
|
||||
else
|
||||
{
|
||||
eCGost3410Parameters = new ECGost3410Parameters(new ECNamedDomainParameters(instance7, byOid3.Curve, byOid3.G, byOid3.N, byOid3.H, byOid3.GetSeed()), instance5.PublicKeyParamSet, instance5.DigestParamSet, instance5.EncryptionParamSet);
|
||||
}
|
||||
}
|
||||
else if (instance6.IsImplicitlyCA)
|
||||
{
|
||||
eCGost3410Parameters = null;
|
||||
}
|
||||
else
|
||||
{
|
||||
X9ECParameters instance8 = X9ECParameters.GetInstance(instance6.Parameters);
|
||||
eCGost3410Parameters = new ECGost3410Parameters(new ECNamedDomainParameters(algorithm, instance8.Curve, instance8.G, instance8.N, instance8.H, instance8.GetSeed()), instance5.PublicKeyParamSet, instance5.DigestParamSet, instance5.EncryptionParamSet);
|
||||
}
|
||||
Asn1Encodable asn1Encodable2 = keyInfo.ParsePrivateKey();
|
||||
if (asn1Encodable2 is DerInteger)
|
||||
{
|
||||
DerInteger instance9 = DerInteger.GetInstance(asn1Encodable2);
|
||||
bigInteger = instance9.Value;
|
||||
}
|
||||
else
|
||||
{
|
||||
ECPrivateKeyStructure instance10 = ECPrivateKeyStructure.GetInstance(asn1Encodable2);
|
||||
bigInteger = instance10.GetKey();
|
||||
}
|
||||
}
|
||||
return new ECPrivateKeyParameters(bigInteger, new ECGost3410Parameters(eCGost3410Parameters, instance5.PublicKeyParamSet, instance5.DigestParamSet, instance5.EncryptionParamSet));
|
||||
}
|
||||
throw new SecurityUtilityException("algorithm identifier in private key not recognised");
|
||||
}
|
||||
|
||||
private static byte[] GetRawKey(PrivateKeyInfo keyInfo, int expectedSize)
|
||||
{
|
||||
byte[] octets = Asn1OctetString.GetInstance(keyInfo.ParsePrivateKey()).GetOctets();
|
||||
if (expectedSize != octets.Length)
|
||||
{
|
||||
throw new SecurityUtilityException("private key encoding has incorrect length");
|
||||
}
|
||||
return octets;
|
||||
}
|
||||
|
||||
public static AsymmetricKeyParameter DecryptKey(char[] passPhrase, EncryptedPrivateKeyInfo encInfo)
|
||||
{
|
||||
return CreateKey(PrivateKeyInfoFactory.CreatePrivateKeyInfo(passPhrase, encInfo));
|
||||
}
|
||||
|
||||
public static AsymmetricKeyParameter DecryptKey(char[] passPhrase, byte[] encryptedPrivateKeyInfoData)
|
||||
{
|
||||
return DecryptKey(passPhrase, Asn1Object.FromByteArray(encryptedPrivateKeyInfoData));
|
||||
}
|
||||
|
||||
public static AsymmetricKeyParameter DecryptKey(char[] passPhrase, Stream encryptedPrivateKeyInfoStream)
|
||||
{
|
||||
return DecryptKey(passPhrase, Asn1Object.FromStream(encryptedPrivateKeyInfoStream));
|
||||
}
|
||||
|
||||
private static AsymmetricKeyParameter DecryptKey(char[] passPhrase, Asn1Object asn1Object)
|
||||
{
|
||||
return DecryptKey(passPhrase, EncryptedPrivateKeyInfo.GetInstance(asn1Object));
|
||||
}
|
||||
|
||||
public static byte[] EncryptKey(DerObjectIdentifier algorithm, char[] passPhrase, byte[] salt, int iterationCount, AsymmetricKeyParameter key)
|
||||
{
|
||||
return EncryptedPrivateKeyInfoFactory.CreateEncryptedPrivateKeyInfo(algorithm, passPhrase, salt, iterationCount, key).GetEncoded();
|
||||
}
|
||||
|
||||
public static byte[] EncryptKey(string algorithm, char[] passPhrase, byte[] salt, int iterationCount, AsymmetricKeyParameter key)
|
||||
{
|
||||
return EncryptedPrivateKeyInfoFactory.CreateEncryptedPrivateKeyInfo(algorithm, passPhrase, salt, iterationCount, key).GetEncoded();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user