blob: c82e4248ab56e37f9bd469e4a4ab537c0d4f674a (
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
|
using System;
using Org.BouncyCastle.Math;
using Org.BouncyCastle.Utilities;
namespace Org.BouncyCastle.Asn1.CryptoPro
{
public class Gost3410ParamSetParameters
: Asn1Encodable
{
private readonly int keySize;
private readonly DerInteger p, q, a;
public static Gost3410ParamSetParameters GetInstance(Asn1TaggedObject obj, bool explicitly)
{
return GetInstance(Asn1Sequence.GetInstance(obj, explicitly));
}
public static Gost3410ParamSetParameters GetInstance(object obj)
{
if (obj == null || obj is Gost3410ParamSetParameters)
return (Gost3410ParamSetParameters) obj;
if (obj is Asn1Sequence seq)
return new Gost3410ParamSetParameters(seq);
throw new ArgumentException("Invalid GOST3410Parameter: " + Platform.GetTypeName(obj));
}
public Gost3410ParamSetParameters(
int keySize,
BigInteger p,
BigInteger q,
BigInteger a)
{
this.keySize = keySize;
this.p = new DerInteger(p);
this.q = new DerInteger(q);
this.a = new DerInteger(a);
}
private Gost3410ParamSetParameters(
Asn1Sequence seq)
{
if (seq.Count != 4)
throw new ArgumentException("Wrong number of elements in sequence", "seq");
this.keySize = DerInteger.GetInstance(seq[0]).IntValueExact;
this.p = DerInteger.GetInstance(seq[1]);
this.q = DerInteger.GetInstance(seq[2]);
this.a = DerInteger.GetInstance(seq[3]);
}
public int KeySize
{
get { return keySize; }
}
public BigInteger P
{
get { return p.PositiveValue; }
}
public BigInteger Q
{
get { return q.PositiveValue; }
}
public BigInteger A
{
get { return a.PositiveValue; }
}
public override Asn1Object ToAsn1Object()
{
return new DerSequence(new DerInteger(keySize), p, q, a);
}
}
}
|