blob: c062d508acdafda2ce09218c13c1bac33e145a0f (
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
45
46
|
using System;
using Org.BouncyCastle.Utilities;
namespace Org.BouncyCastle.Math.Field
{
internal class GF2Polynomial
: IPolynomial
{
protected readonly int[] exponents;
internal GF2Polynomial(int[] exponents)
{
this.exponents = Arrays.Clone(exponents);
}
public virtual int Degree
{
get { return exponents[exponents.Length - 1]; }
}
public virtual int[] GetExponentsPresent()
{
return Arrays.Clone(exponents);
}
public override bool Equals(object obj)
{
if (this == obj)
{
return true;
}
GF2Polynomial other = obj as GF2Polynomial;
if (null == other)
{
return false;
}
return Arrays.AreEqual(exponents, other.exponents);
}
public override int GetHashCode()
{
return Arrays.GetHashCode(exponents);
}
}
}
|