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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
using System;
using Org.BouncyCastle.Math;
using Org.BouncyCastle.Math.EC;
namespace Org.BouncyCastle.Asn1.X9
{
/**
* Class for processing an ECFieldElement as a DER object.
*/
public class X9FieldElement
: Asn1Encodable
{
private ECFieldElement f;
public X9FieldElement(
ECFieldElement f)
{
this.f = f;
}
[Obsolete("Will be removed")]
public X9FieldElement(
BigInteger p,
Asn1OctetString s)
: this(new FpFieldElement(p, new BigInteger(1, s.GetOctets())))
{
}
[Obsolete("Will be removed")]
public X9FieldElement(
int m,
int k1,
int k2,
int k3,
Asn1OctetString s)
: this(new F2mFieldElement(m, k1, k2, k3, new BigInteger(1, s.GetOctets())))
{
}
public ECFieldElement Value
{
get { return f; }
}
/**
* Produce an object suitable for an Asn1OutputStream.
* <pre>
* FieldElement ::= OCTET STRING
* </pre>
* <p>
* <ol>
* <li> if <i>q</i> is an odd prime then the field element is
* processed as an Integer and converted to an octet string
* according to x 9.62 4.3.1.</li>
* <li> if <i>q</i> is 2<sup>m</sup> then the bit string
* contained in the field element is converted into an octet
* string with the same ordering padded at the front if necessary.
* </li>
* </ol>
* </p>
*/
public override Asn1Object ToAsn1Object()
{
int byteCount = X9IntegerConverter.GetByteLength(f);
byte[] paddedBigInteger = X9IntegerConverter.IntegerToBytes(f.ToBigInteger(), byteCount);
return new DerOctetString(paddedBigInteger);
}
}
}
|