blob: f6ba629d5adfc633592391118fef9eabd08592a7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
using System;
namespace 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();
}
}
}
|