49 lines
1.1 KiB
C#
49 lines
1.1 KiB
C#
#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
|
|
#pragma warning disable
|
|
using System;
|
|
|
|
namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Math.Field
|
|
{
|
|
internal class PrimeField
|
|
: IFiniteField
|
|
{
|
|
protected readonly BigInteger characteristic;
|
|
|
|
internal PrimeField(BigInteger characteristic)
|
|
{
|
|
this.characteristic = characteristic;
|
|
}
|
|
|
|
public virtual BigInteger Characteristic
|
|
{
|
|
get { return characteristic; }
|
|
}
|
|
|
|
public virtual int Dimension
|
|
{
|
|
get { return 1; }
|
|
}
|
|
|
|
public override bool Equals(object obj)
|
|
{
|
|
if (this == obj)
|
|
{
|
|
return true;
|
|
}
|
|
PrimeField other = obj as PrimeField;
|
|
if (null == other)
|
|
{
|
|
return false;
|
|
}
|
|
return characteristic.Equals(other.characteristic);
|
|
}
|
|
|
|
public override int GetHashCode()
|
|
{
|
|
return characteristic.GetHashCode();
|
|
}
|
|
}
|
|
}
|
|
#pragma warning restore
|
|
#endif
|