blob: 7ef4f13bc357f9d2afc175ada120f0311717699c (
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
using Org.BouncyCastle.Math.EC;
using Org.BouncyCastle.Utilities;
namespace Org.BouncyCastle.Asn1.X9
{
/**
* class for describing an ECPoint as a Der object.
*/
public class X9ECPoint
: Asn1Encodable
{
private readonly Asn1OctetString encoding;
private ECCurve c;
private ECPoint p;
public X9ECPoint(ECPoint p)
: this(p, false)
{
}
public X9ECPoint(ECPoint p, bool compressed)
{
this.p = p.Normalize();
this.encoding = new DerOctetString(p.GetEncoded(compressed));
}
public X9ECPoint(ECCurve c, byte[] encoding)
{
this.c = c;
this.encoding = new DerOctetString(Arrays.Clone(encoding));
}
public X9ECPoint(ECCurve c, Asn1OctetString s)
: this(c, s.GetOctets())
{
}
public byte[] GetPointEncoding()
{
return Arrays.Clone(encoding.GetOctets());
}
public ECPoint Point
{
get
{
if (p == null)
{
p = c.DecodePoint(encoding.GetOctets()).Normalize();
}
return p;
}
}
public bool IsPointCompressed
{
get
{
byte[] octets = encoding.GetOctets();
return octets != null && octets.Length > 0 && (octets[0] == 2 || octets[0] == 3);
}
}
/**
* Produce an object suitable for an Asn1OutputStream.
* <pre>
* ECPoint ::= OCTET STRING
* </pre>
* <p>
* Octet string produced using ECPoint.GetEncoded().</p>
*/
public override Asn1Object ToAsn1Object()
{
return encoding;
}
}
}
|