blob: 7b84569fe46ed33aacb1c12e297b0e773ba56f5c (
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
47
48
49
50
51
52
53
54
|
using System;
namespace Org.BouncyCastle.Math.Field
{
public abstract class FiniteFields
{
internal static readonly IFiniteField GF_2 = new PrimeField(BigInteger.ValueOf(2));
internal static readonly IFiniteField GF_3 = new PrimeField(BigInteger.ValueOf(3));
public static IPolynomialExtensionField GetBinaryExtensionField(int[] exponents)
{
if (exponents[0] != 0)
{
throw new ArgumentException("Irreducible polynomials in GF(2) must have constant term", "exponents");
}
for (int i = 1; i < exponents.Length; ++i)
{
if (exponents[i] <= exponents[i - 1])
{
throw new ArgumentException("Polynomial exponents must be montonically increasing", "exponents");
}
}
return new GenericPolynomialExtensionField(GF_2, new GF2Polynomial(exponents));
}
// public static IPolynomialExtensionField GetTernaryExtensionField(Term[] terms)
// {
// return new GenericPolynomialExtensionField(GF_3, new GF3Polynomial(terms));
// }
public static IFiniteField GetPrimeField(BigInteger characteristic)
{
int bitLength = characteristic.BitLength;
if (characteristic.SignValue <= 0 || bitLength < 2)
{
throw new ArgumentException("Must be >= 2", "characteristic");
}
if (bitLength < 3)
{
switch (characteristic.IntValue)
{
case 2:
return GF_2;
case 3:
return GF_3;
}
}
return new PrimeField(characteristic);
}
}
}
|