49 lines
862 B
C#
49 lines
862 B
C#
using System;
|
|
using Org.BouncyCastle.Math;
|
|
|
|
namespace Org.BouncyCastle.Crypto.Parameters;
|
|
|
|
public class ElGamalPublicKeyParameters : ElGamalKeyParameters
|
|
{
|
|
private readonly BigInteger y;
|
|
|
|
public BigInteger Y => y;
|
|
|
|
public ElGamalPublicKeyParameters(BigInteger y, ElGamalParameters parameters)
|
|
: base(isPrivate: false, parameters)
|
|
{
|
|
if (y == null)
|
|
{
|
|
throw new ArgumentNullException("y");
|
|
}
|
|
this.y = y;
|
|
}
|
|
|
|
public override bool Equals(object obj)
|
|
{
|
|
if (obj == this)
|
|
{
|
|
return true;
|
|
}
|
|
if (!(obj is ElGamalPublicKeyParameters other))
|
|
{
|
|
return false;
|
|
}
|
|
return Equals(other);
|
|
}
|
|
|
|
protected bool Equals(ElGamalPublicKeyParameters other)
|
|
{
|
|
if (y.Equals(other.y))
|
|
{
|
|
return Equals((ElGamalKeyParameters)other);
|
|
}
|
|
return false;
|
|
}
|
|
|
|
public override int GetHashCode()
|
|
{
|
|
return y.GetHashCode() ^ base.GetHashCode();
|
|
}
|
|
}
|