You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
132 lines
4.2 KiB
132 lines
4.2 KiB
1 year ago
|
#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
|
||
|
#pragma warning disable
|
||
|
using System;
|
||
|
using System.Collections;
|
||
|
|
||
|
using BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1;
|
||
|
using BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.CryptoPro;
|
||
|
using BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9;
|
||
|
using BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Generators;
|
||
|
using BestHTTP.SecureProtocol.Org.BouncyCastle.Security;
|
||
|
using BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities;
|
||
|
using BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Collections;
|
||
|
|
||
|
namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters
|
||
|
{
|
||
|
public abstract class ECKeyParameters
|
||
|
: AsymmetricKeyParameter
|
||
|
{
|
||
|
private static readonly string[] algorithms = { "EC", "ECDSA", "ECDH", "ECDHC", "ECGOST3410", "ECMQV" };
|
||
|
|
||
|
private readonly string algorithm;
|
||
|
private readonly ECDomainParameters parameters;
|
||
|
private readonly DerObjectIdentifier publicKeyParamSet;
|
||
|
|
||
|
protected ECKeyParameters(
|
||
|
string algorithm,
|
||
|
bool isPrivate,
|
||
|
ECDomainParameters parameters)
|
||
|
: base(isPrivate)
|
||
|
{
|
||
|
if (algorithm == null)
|
||
|
throw new ArgumentNullException("algorithm");
|
||
|
if (parameters == null)
|
||
|
throw new ArgumentNullException("parameters");
|
||
|
|
||
|
this.algorithm = VerifyAlgorithmName(algorithm);
|
||
|
this.parameters = parameters;
|
||
|
}
|
||
|
|
||
|
protected ECKeyParameters(
|
||
|
string algorithm,
|
||
|
bool isPrivate,
|
||
|
DerObjectIdentifier publicKeyParamSet)
|
||
|
: base(isPrivate)
|
||
|
{
|
||
|
if (algorithm == null)
|
||
|
throw new ArgumentNullException("algorithm");
|
||
|
if (publicKeyParamSet == null)
|
||
|
throw new ArgumentNullException("publicKeyParamSet");
|
||
|
|
||
|
this.algorithm = VerifyAlgorithmName(algorithm);
|
||
|
this.parameters = LookupParameters(publicKeyParamSet);
|
||
|
this.publicKeyParamSet = publicKeyParamSet;
|
||
|
}
|
||
|
|
||
|
public string AlgorithmName
|
||
|
{
|
||
|
get { return algorithm; }
|
||
|
}
|
||
|
|
||
|
public ECDomainParameters Parameters
|
||
|
{
|
||
|
get { return parameters; }
|
||
|
}
|
||
|
|
||
|
public DerObjectIdentifier PublicKeyParamSet
|
||
|
{
|
||
|
get { return publicKeyParamSet; }
|
||
|
}
|
||
|
|
||
|
public override bool Equals(
|
||
|
object obj)
|
||
|
{
|
||
|
if (obj == this)
|
||
|
return true;
|
||
|
|
||
|
ECDomainParameters other = obj as ECDomainParameters;
|
||
|
|
||
|
if (other == null)
|
||
|
return false;
|
||
|
|
||
|
return Equals(other);
|
||
|
}
|
||
|
|
||
|
protected bool Equals(
|
||
|
ECKeyParameters other)
|
||
|
{
|
||
|
return parameters.Equals(other.parameters) && base.Equals(other);
|
||
|
}
|
||
|
|
||
|
public override int GetHashCode()
|
||
|
{
|
||
|
return parameters.GetHashCode() ^ base.GetHashCode();
|
||
|
}
|
||
|
|
||
|
internal ECKeyGenerationParameters CreateKeyGenerationParameters(
|
||
|
SecureRandom random)
|
||
|
{
|
||
|
if (publicKeyParamSet != null)
|
||
|
{
|
||
|
return new ECKeyGenerationParameters(publicKeyParamSet, random);
|
||
|
}
|
||
|
|
||
|
return new ECKeyGenerationParameters(parameters, random);
|
||
|
}
|
||
|
|
||
|
internal static string VerifyAlgorithmName(string algorithm)
|
||
|
{
|
||
|
string upper = BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Platform.ToUpperInvariant(algorithm);
|
||
|
if (Array.IndexOf(algorithms, algorithm, 0, algorithms.Length) < 0)
|
||
|
throw new ArgumentException("unrecognised algorithm: " + algorithm, "algorithm");
|
||
|
return upper;
|
||
|
}
|
||
|
|
||
|
internal static ECDomainParameters LookupParameters(
|
||
|
DerObjectIdentifier publicKeyParamSet)
|
||
|
{
|
||
|
if (publicKeyParamSet == null)
|
||
|
throw new ArgumentNullException("publicKeyParamSet");
|
||
|
|
||
|
X9ECParameters x9 = ECKeyPairGenerator.FindECCurveByOid(publicKeyParamSet);
|
||
|
|
||
|
if (x9 == null)
|
||
|
throw new ArgumentException("OID is not a valid public key parameter set", "publicKeyParamSet");
|
||
|
|
||
|
return new ECDomainParameters(x9);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
#pragma warning restore
|
||
|
#endif
|