init commit

This commit is contained in:
2025-10-09 09:57:24 +09:00
commit 4d551bd74f
6636 changed files with 1218703 additions and 0 deletions

View File

@@ -0,0 +1,75 @@
using System;
using Org.BouncyCastle.Asn1;
using Org.BouncyCastle.Math;
namespace Org.BouncyCastle.Crypto.Parameters;
public class ECPrivateKeyParameters : ECKeyParameters
{
private readonly BigInteger d;
public BigInteger D => d;
public ECPrivateKeyParameters(BigInteger d, ECDomainParameters parameters)
: this("EC", d, parameters)
{
}
[Obsolete("Use version with explicit 'algorithm' parameter")]
public ECPrivateKeyParameters(BigInteger d, DerObjectIdentifier publicKeyParamSet)
: base("ECGOST3410", isPrivate: true, publicKeyParamSet)
{
if (d == null)
{
throw new ArgumentNullException("d");
}
this.d = d;
}
public ECPrivateKeyParameters(string algorithm, BigInteger d, ECDomainParameters parameters)
: base(algorithm, isPrivate: true, parameters)
{
if (d == null)
{
throw new ArgumentNullException("d");
}
this.d = d;
}
public ECPrivateKeyParameters(string algorithm, BigInteger d, DerObjectIdentifier publicKeyParamSet)
: base(algorithm, isPrivate: true, publicKeyParamSet)
{
if (d == null)
{
throw new ArgumentNullException("d");
}
this.d = d;
}
public override bool Equals(object obj)
{
if (obj == this)
{
return true;
}
if (!(obj is ECPrivateKeyParameters other))
{
return false;
}
return Equals(other);
}
protected bool Equals(ECPrivateKeyParameters other)
{
if (d.Equals(other.d))
{
return Equals((ECKeyParameters)other);
}
return false;
}
public override int GetHashCode()
{
return d.GetHashCode() ^ base.GetHashCode();
}
}