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,68 @@
using System;
using Org.BouncyCastle.Asn1;
using Org.BouncyCastle.Math;
namespace Org.BouncyCastle.Crypto.Parameters;
public class DHPublicKeyParameters : DHKeyParameters
{
private readonly BigInteger y;
public virtual BigInteger Y => y;
private static BigInteger Validate(BigInteger y, DHParameters dhParams)
{
if (y == null)
{
throw new ArgumentNullException("y");
}
if (y.CompareTo(BigInteger.Two) < 0 || y.CompareTo(dhParams.P.Subtract(BigInteger.Two)) > 0)
{
throw new ArgumentException("invalid DH public key", "y");
}
if (dhParams.Q != null && !y.ModPow(dhParams.Q, dhParams.P).Equals(BigInteger.One))
{
throw new ArgumentException("y value does not appear to be in correct group", "y");
}
return y;
}
public DHPublicKeyParameters(BigInteger y, DHParameters parameters)
: base(isPrivate: false, parameters)
{
this.y = Validate(y, parameters);
}
public DHPublicKeyParameters(BigInteger y, DHParameters parameters, DerObjectIdentifier algorithmOid)
: base(isPrivate: false, parameters, algorithmOid)
{
this.y = Validate(y, parameters);
}
public override bool Equals(object obj)
{
if (obj == this)
{
return true;
}
if (!(obj is DHPublicKeyParameters other))
{
return false;
}
return Equals(other);
}
protected bool Equals(DHPublicKeyParameters other)
{
if (y.Equals(other.y))
{
return Equals((DHKeyParameters)other);
}
return false;
}
public override int GetHashCode()
{
return y.GetHashCode() ^ base.GetHashCode();
}
}