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.
49 lines
1.1 KiB
49 lines
1.1 KiB
1 year ago
|
#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
|